mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
44 lines
864 B
JavaScript
44 lines
864 B
JavaScript
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, addListener, createElement, detachNode, init, insert, noop, safe_not_equal } from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
var a, dispose;
|
|
|
|
return {
|
|
c() {
|
|
a = createElement("a");
|
|
a.textContent = "this should not navigate to example.com";
|
|
a.href = "https://example.com";
|
|
dispose = addListener(a, "touchstart", touchstart_handler);
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, a, anchor);
|
|
},
|
|
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
|
|
d(detach) {
|
|
if (detach) {
|
|
detachNode(a);
|
|
}
|
|
|
|
dispose();
|
|
}
|
|
};
|
|
}
|
|
|
|
function touchstart_handler(e) {
|
|
return e.preventDefault();
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, null, create_fragment, safe_not_equal);
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent; |