Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
maxence-charriere committed Nov 8, 2021
1 parent 501a9ba commit 84dd155
Show file tree
Hide file tree
Showing 25 changed files with 2,300 additions and 2,293 deletions.
202 changes: 101 additions & 101 deletions docs/actions.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/app-worker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const cacheName = "app-" + "1ee07503cfb17d237b879ab82632f9daa54128b7";
const cacheName = "app-" + "1c666f4416a787688265cb66cb50a299fb7f3185";

self.addEventListener("install", event => {
console.log("installing app worker 1ee07503cfb17d237b879ab82632f9daa54128b7");
console.log("installing app worker 1c666f4416a787688265cb66cb50a299fb7f3185");

event.waitUntil(
caches.open(cacheName).
Expand Down Expand Up @@ -44,7 +44,7 @@ self.addEventListener("activate", event => {
);
})
);
console.log("app worker 1ee07503cfb17d237b879ab82632f9daa54128b7 is activated");
console.log("app worker 1c666f4416a787688265cb66cb50a299fb7f3185 is activated");
});

self.addEventListener("fetch", event => {
Expand Down
2 changes: 1 addition & 1 deletion docs/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if ("serviceWorker" in navigator) {
// -----------------------------------------------------------------------------
// Env
// -----------------------------------------------------------------------------
const goappEnv = {"GOAPP_INTERNAL_URLS":"null","GOAPP_ROOT_PREFIX":"","GOAPP_STATIC_RESOURCES_URL":"","GOAPP_VERSION":"1ee07503cfb17d237b879ab82632f9daa54128b7"};
const goappEnv = {"GOAPP_INTERNAL_URLS":"null","GOAPP_ROOT_PREFIX":"","GOAPP_STATIC_RESOURCES_URL":"","GOAPP_VERSION":"1c666f4416a787688265cb66cb50a299fb7f3185"};

function goappGetenv(k) {
return goappEnv[k];
Expand Down
196 changes: 98 additions & 98 deletions docs/architecture.html

Large diffs are not rendered by default.

190 changes: 95 additions & 95 deletions docs/components.html

Large diffs are not rendered by default.

196 changes: 98 additions & 98 deletions docs/concurrency.html

Large diffs are not rendered by default.

208 changes: 104 additions & 104 deletions docs/declarative-syntax.html

Large diffs are not rendered by default.

182 changes: 91 additions & 91 deletions docs/getting-started.html

Large diffs are not rendered by default.

198 changes: 99 additions & 99 deletions docs/github-deploy.html

Large diffs are not rendered by default.

198 changes: 99 additions & 99 deletions docs/index.html

Large diffs are not rendered by default.

200 changes: 100 additions & 100 deletions docs/install.html

Large diffs are not rendered by default.

192 changes: 96 additions & 96 deletions docs/js.html

Large diffs are not rendered by default.

224 changes: 112 additions & 112 deletions docs/lifecycle.html

Large diffs are not rendered by default.

184 changes: 92 additions & 92 deletions docs/migrate.html

Large diffs are not rendered by default.

186 changes: 93 additions & 93 deletions docs/privacy-policy.html

Large diffs are not rendered by default.

626 changes: 313 additions & 313 deletions docs/reference.html

Large diffs are not rendered by default.

196 changes: 98 additions & 98 deletions docs/routing.html

Large diffs are not rendered by default.

190 changes: 95 additions & 95 deletions docs/seo.html

Large diffs are not rendered by default.

180 changes: 90 additions & 90 deletions docs/states.html

Large diffs are not rendered by default.

186 changes: 93 additions & 93 deletions docs/static-resources.html

Large diffs are not rendered by default.

198 changes: 99 additions & 99 deletions docs/testing.html

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/wasm_exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,13 @@
offset += 8;
});

// The linker guarantees global data starts from at least wasmMinDataAddr.
// Keep in sync with cmd/link/internal/ld/data.go:wasmMinDataAddr.
const wasmMinDataAddr = 4096 + 4096;
if (offset >= wasmMinDataAddr) {
throw new Error("command line too long");
}

this._inst.exports.run(argc, argv);
if (this.exited) {
this._resolveExitPromise();
Expand Down
Binary file modified docs/web/app.wasm
Binary file not shown.
444 changes: 222 additions & 222 deletions docs/web/documents/reference.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/app/scripts.go

Large diffs are not rendered by default.

0 comments on commit 84dd155

Please sign in to comment.