fix snapshots for the actual mounting code

pull/1210/head
ekhaled 7 years ago
parent 270be984ac
commit 2e9cd4742c

@ -252,7 +252,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -59,7 +59,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -219,7 +219,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -45,7 +45,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -219,7 +219,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -45,7 +45,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -215,7 +215,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -45,7 +45,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -203,7 +203,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -33,7 +33,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -239,7 +239,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -49,7 +49,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -221,7 +221,7 @@ class SvelteComponent extends HTMLElement {
this._fragment.c();
this._fragment.m(this.shadowRoot, null);
if (options.target) this._mount(options.target, options.anchor || null);
if (options.target) this._mount(options.target, options.anchor);
}
static get observedAttributes() {

@ -39,7 +39,7 @@ class SvelteComponent extends HTMLElement {
this._fragment.c();
this._fragment.m(this.shadowRoot, null);
if (options.target) this._mount(options.target, options.anchor || null);
if (options.target) this._mount(options.target, options.anchor);
}
static get observedAttributes() {

@ -211,7 +211,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._oncreate);
}

@ -42,7 +42,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._oncreate);
}

@ -233,7 +233,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -47,7 +47,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -47,7 +47,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -235,7 +235,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -45,7 +45,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -360,7 +360,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -158,7 +158,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -233,7 +233,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -52,7 +52,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -224,7 +224,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -42,7 +42,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -281,7 +281,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -95,7 +95,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -258,7 +258,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -72,7 +72,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -231,7 +231,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -45,7 +45,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -226,7 +226,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -40,7 +40,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -226,7 +226,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -40,7 +40,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -51,7 +51,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -47,7 +47,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -275,7 +275,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -71,7 +71,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -224,7 +224,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -36,7 +36,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -251,7 +251,7 @@ function SvelteComponent(options) {
var nodes = children(options.target);
options.hydrate ? this._fragment.l(nodes) : this._fragment.c();
nodes.forEach(detachNode);
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -46,7 +46,7 @@ function SvelteComponent(options) {
var nodes = children(options.target);
options.hydrate ? this._fragment.l(nodes) : this._fragment.c();
nodes.forEach(detachNode);
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -295,7 +295,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._beforecreate);
}

@ -97,7 +97,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._beforecreate);
}

@ -240,7 +240,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -57,7 +57,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
this._lock = true;
callAll(this._beforecreate);

@ -206,7 +206,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._oncreate);
}

@ -38,7 +38,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
callAll(this._oncreate);
}

@ -210,7 +210,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -40,7 +40,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -225,7 +225,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -35,7 +35,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -201,7 +201,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -31,7 +31,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -448,7 +448,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -254,7 +254,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -250,7 +250,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

@ -60,7 +60,7 @@ function SvelteComponent(options) {
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor || null);
this._mount(options.target, options.anchor);
}
}

Loading…
Cancel
Save