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/bind-width-height/expected.js

55 lines
1.2 KiB

7 years ago
/* generated by Svelte vX.Y.Z */
7 years ago
import { addResizeListener, assign, callAll, createElement, detachNode, init, insertNode, noop, proto } from "svelte/shared.js";
7 years ago
function create_main_fragment(component, ctx) {
var div, div_resize_listener;
function div_resize_handler() {
component.set({ w: div.offsetWidth, h: div.offsetHeight });
7 years ago
}
return {
7 years ago
c() {
7 years ago
div = createElement("div");
div.textContent = "some content";
component.root._beforecreate.push(div_resize_handler);
7 years ago
},
7 years ago
m(target, anchor) {
7 years ago
insertNode(div, target, anchor);
7 years ago
div_resize_listener = addResizeListener(div, div_resize_handler);
7 years ago
},
p: noop,
7 years ago
d(detach) {
if (detach) {
detachNode(div);
}
7 years ago
7 years ago
div_resize_listener.cancel();
}
7 years ago
};
}
function SvelteComponent(options) {
init(this, options);
this._state = assign({}, options.data);
7 years ago
if (!options.root) {
this._oncreate = [];
this._beforecreate = [];
}
7 years ago
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor);
7 years ago
callAll(this._beforecreate);
7 years ago
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;