update js tests

pull/2008/head
Richard Harris 7 years ago
parent 53b17b4cd3
commit 0dd46b0873

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
nested.$$.fragment.i(); nested.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (nested) nested.$$.fragment.o(); nested.$$.fragment.o(local);
current = false; current = false;
}, },

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
nested.$$.fragment.i(); nested.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (nested) nested.$$.fragment.o(); nested.$$.fragment.o(local);
current = false; current = false;
}, },

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
nested.$$.fragment.i(); nested.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (nested) nested.$$.fragment.o(); nested.$$.fragment.o(local);
current = false; current = false;
}, },

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
nested.$$.fragment.i(); nested.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (nested) nested.$$.fragment.o(); nested.$$.fragment.o(local);
current = false; current = false;
}, },

@ -18,15 +18,15 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
lazyload.$$.fragment.i(); lazyload.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (lazyload) lazyload.$$.fragment.o(); lazyload.$$.fragment.o(local);
current = false; current = false;
}, },

@ -24,18 +24,18 @@ function create_fragment(ctx) {
p: noop, p: noop,
i() { i(local) {
if (current) return; if (current) return;
imported.$$.fragment.i(); imported.$$.fragment.i(local);
nonimported.$$.fragment.i(); nonimported.$$.fragment.i(local);
current = true; current = true;
}, },
o() { o(local) {
if (imported) imported.$$.fragment.o(); imported.$$.fragment.o(local);
if (nonimported) nonimported.$$.fragment.o(); nonimported.$$.fragment.o(local);
current = false; current = false;
}, },

Loading…
Cancel
Save