[REF] runtime: rename handler.ts -> event_handling.ts

This commit is contained in:
Géry Debongnie
2022-05-27 09:24:37 +02:00
committed by Sam Degueldre
parent 22a79cdedd
commit a7daef380a
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import {
toggler, toggler,
comment, comment,
} from "./blockdom"; } from "./blockdom";
import { mainEventHandler } from "./handler"; import { mainEventHandler } from "./event_handling";
export type { Reactive } from "./reactivity"; export type { Reactive } from "./reactivity";
config.shouldNormalizeDom = false; config.shouldNormalizeDom = false;
+1 -1
View File
@@ -1,6 +1,6 @@
import { config, createBlock, createCatcher, mount } from "../../src/runtime/blockdom"; import { config, createBlock, createCatcher, mount } from "../../src/runtime/blockdom";
import { makeTestFixture } from "./helpers"; import { makeTestFixture } from "./helpers";
import { mainEventHandler } from "../../src/runtime/handler"; import { mainEventHandler } from "../../src/runtime/event_handling";
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Setup and helpers // Setup and helpers