You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/js/samples/event-modifiers/expected.js

78 lines
1.4 KiB

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
append,
detach,
element,
init,
insert,
listen,
noop,
prevent_default,
run_all,
safe_not_equal,
space,
stop_propagation
6 years ago
} from "svelte/internal";
function create_fragment(ctx) {
6 years ago
var div, button0, t1, button1, t3, button2, dispose;
return {
c() {
6 years ago
div = element("div");
button0 = element("button");
button0.textContent = "click me";
t1 = space();
6 years ago
button1 = element("button");
button1.textContent = "or me";
t3 = space();
6 years ago
button2 = element("button");
button2.textContent = "or me!";
dispose = [
6 years ago
listen(button0, "click", stop_propagation(prevent_default(handleClick))),
listen(button1, "click", handleClick, { once: true, capture: true }),
listen(button2, "click", handleClick, true),
listen(div, "touchstart", handleTouchstart, { passive: true })
];
},
m(target, anchor) {
insert(target, div, anchor);
append(div, button0);
6 years ago
append(div, t1);
append(div, button1);
6 years ago
append(div, t3);
append(div, button2);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
if (detaching) {
detach(div);
}
run_all(dispose);
}
};
}
function handleTouchstart() {
// ...
}
function handleClick() {
// ...
}
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, null, create_fragment, safe_not_equal, []);
}
}
export default Component;