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-handler-no-passive/expected.js

53 lines
817 B

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
detach,
element,
init,
insert,
listen,
noop,
safe_not_equal
} from "svelte/internal";
function create_fragment(ctx) {
var a, dispose;
return {
c() {
6 years ago
a = element("a");
a.textContent = "this should not navigate to example.com";
a.href = "https://example.com";
6 years ago
dispose = listen(a, "touchstart", touchstart_handler);
},
m(target, anchor) {
insert(target, a, anchor);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
if (detaching) {
detach(a);
}
dispose();
}
};
}
function touchstart_handler(e) {
return e.preventDefault();
}
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, null, create_fragment, safe_not_equal, []);
}
}
export default Component;