fix snapshots

pull/1210/head
ekhaled 8 years ago
parent e2d50617c2
commit 2e3724f7d3

@ -171,7 +171,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -252,7 +252,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -151,7 +151,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -219,7 +219,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
this._lock = true; this._lock = true;
callAll(this._beforecreate); callAll(this._beforecreate);

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

@ -151,7 +151,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -219,7 +219,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
this._lock = true; this._lock = true;
callAll(this._beforecreate); callAll(this._beforecreate);

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

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -215,7 +215,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
this._lock = true; this._lock = true;
callAll(this._beforecreate); callAll(this._beforecreate);

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

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -203,7 +203,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -239,7 +239,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -159,7 +159,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -211,7 +211,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
callAll(this._oncreate); callAll(this._oncreate);
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -233,7 +233,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -235,7 +235,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -179,7 +179,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -360,7 +360,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -159,7 +159,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -233,7 +233,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -159,7 +159,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -224,7 +224,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -281,7 +281,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -258,7 +258,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -231,7 +231,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -226,7 +226,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -226,7 +226,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -163,7 +163,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -237,7 +237,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -181,7 +181,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -275,7 +275,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
this._lock = true; this._lock = true;
callAll(this._beforecreate); callAll(this._beforecreate);

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

@ -165,7 +165,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -224,7 +224,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -182,7 +182,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -251,7 +251,7 @@ function SvelteComponent(options) {
var nodes = children(options.target); var nodes = children(options.target);
options.hydrate ? this._fragment.l(nodes) : this._fragment.c(); options.hydrate ? this._fragment.l(nodes) : this._fragment.c();
nodes.forEach(detachNode); nodes.forEach(detachNode);
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -175,7 +175,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -295,7 +295,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
callAll(this._beforecreate); callAll(this._beforecreate);
} }

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

@ -161,7 +161,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -240,7 +240,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
this._lock = true; this._lock = true;
callAll(this._beforecreate); callAll(this._beforecreate);

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

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -206,7 +206,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
callAll(this._oncreate); callAll(this._oncreate);
} }

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

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -210,7 +210,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -225,7 +225,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -147,7 +147,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -201,7 +201,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -171,7 +171,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -448,7 +448,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

@ -167,7 +167,7 @@ function callAll(fns) {
} }
function _mount(target, anchor) { function _mount(target, anchor) {
this._fragment.m(target, anchor); this._fragment[this._fragment.i ? 'i' : 'm'](target, anchor);
} }
function _unmount() { function _unmount() {
@ -250,7 +250,7 @@ function SvelteComponent(options) {
if (options.target) { if (options.target) {
this._fragment.c(); this._fragment.c();
this._fragment.m(options.target, options.anchor || null); this._mount(options.target, options.anchor || null);
} }
} }

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

Loading…
Cancel
Save