|
|
@ -3,7 +3,7 @@ import { _differsImmutable, assign, callAll, init, noop, proto } from "svelte/sh
|
|
|
|
|
|
|
|
|
|
|
|
var Nested = window.Nested;
|
|
|
|
var Nested = window.Nested;
|
|
|
|
|
|
|
|
|
|
|
|
function create_main_fragment(state, component) {
|
|
|
|
function create_main_fragment(component, state) {
|
|
|
|
|
|
|
|
|
|
|
|
var nested = new Nested({
|
|
|
|
var nested = new Nested({
|
|
|
|
root: component.root,
|
|
|
|
root: component.root,
|
|
|
@ -41,7 +41,7 @@ function SvelteComponent(options) {
|
|
|
|
this._aftercreate = [];
|
|
|
|
this._aftercreate = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this._fragment = create_main_fragment(this._state, this);
|
|
|
|
this._fragment = create_main_fragment(this, this._state);
|
|
|
|
|
|
|
|
|
|
|
|
if (options.target) {
|
|
|
|
if (options.target) {
|
|
|
|
this._fragment.c();
|
|
|
|
this._fragment.c();
|
|
|
|