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

52 lines
1.1 KiB

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