Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
maxence-charriere committed May 31, 2024
1 parent 24e3e1f commit d310db9
Show file tree
Hide file tree
Showing 24 changed files with 1,542 additions and 1,542 deletions.
140 changes: 70 additions & 70 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,8 +1,8 @@
const cacheName = "app-" + "2946ea2c4a43091d58735ad3f15bc73e09355be5";
const cacheName = "app-" + "91fb0a689c4e65cba6e9e4c88de038ac0354c031";
const resourcesToCache = ["/","/app.css","/app.js","/manifest.webmanifest","/wasm_exec.js","/web/app.wasm","/web/css/docs.css","/web/css/prism.css","/web/documents/home-next.md","/web/documents/home.md","/web/documents/updates.md","/web/documents/what-is-go-app.md","/web/js/prism.js","https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1013306768105236","https://raw.githubusercontent.com/maxence-charriere/go-app/master/docs/web/icon.png"];

self.addEventListener("install", (event) => {
console.log("installing app worker 2946ea2c4a43091d58735ad3f15bc73e09355be5");
console.log("installing app worker 91fb0a689c4e65cba6e9e4c88de038ac0354c031");

event.waitUntil(
caches
Expand All @@ -28,7 +28,7 @@ self.addEventListener("activate", (event) => {
);
})
);
console.log("app worker 2946ea2c4a43091d58735ad3f15bc73e09355be5 is activated");
console.log("app worker 91fb0a689c4e65cba6e9e4c88de038ac0354c031 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 @@ -13,7 +13,7 @@ var goappOnAppInstallChange = function () {
goappAppInstallChangedBeforeWasmLoaded = true;
};

const goappEnv = {"GOAPP_INTERNAL_URLS":"null","GOAPP_ROOT_PREFIX":"/","GOAPP_STATIC_RESOURCES_URL":"/web","GOAPP_VERSION":"2946ea2c4a43091d58735ad3f15bc73e09355be5"};
const goappEnv = {"GOAPP_INTERNAL_URLS":"null","GOAPP_ROOT_PREFIX":"/","GOAPP_STATIC_RESOURCES_URL":"/web","GOAPP_VERSION":"91fb0a689c4e65cba6e9e4c88de038ac0354c031"};
const goappLoadingLabel = "go-app documentation {progress}%";
const goappWasmContentLength = "";
const goappWasmContentLengthHeader = "";
Expand Down
162 changes: 81 additions & 81 deletions docs/architecture.html

Large diffs are not rendered by default.

172 changes: 86 additions & 86 deletions docs/components.html

Large diffs are not rendered by default.

142 changes: 71 additions & 71 deletions docs/concurrency.html

Large diffs are not rendered by default.

152 changes: 76 additions & 76 deletions docs/declarative-syntax.html

Large diffs are not rendered by default.

148 changes: 74 additions & 74 deletions docs/getting-started.html

Large diffs are not rendered by default.

154 changes: 77 additions & 77 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.

122 changes: 61 additions & 61 deletions docs/install.html

Large diffs are not rendered by default.

154 changes: 77 additions & 77 deletions docs/js.html

Large diffs are not rendered by default.

152 changes: 76 additions & 76 deletions docs/lifecycle.html

Large diffs are not rendered by default.

156 changes: 78 additions & 78 deletions docs/migrate.html

Large diffs are not rendered by default.

132 changes: 66 additions & 66 deletions docs/notifications.html

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions docs/privacy-policy.html

Large diffs are not rendered by default.

128 changes: 64 additions & 64 deletions docs/reference.html

Large diffs are not rendered by default.

156 changes: 78 additions & 78 deletions docs/routing.html

Large diffs are not rendered by default.

148 changes: 74 additions & 74 deletions docs/seo.html

Large diffs are not rendered by default.

170 changes: 85 additions & 85 deletions docs/states.html

Large diffs are not rendered by default.

150 changes: 75 additions & 75 deletions docs/static-resources.html

Large diffs are not rendered by default.

176 changes: 88 additions & 88 deletions docs/testing.html

Large diffs are not rendered by default.

Binary file modified docs/web/app.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/web/documents/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Serving an app built with go-app is done by using the [Go standard HTTP model](h
```go
func main() {
// Go-app component routing (client-side):
app.Route("/", &hello{})
app.Route("/hello", &hello{})
app.Route("/", func() app.Composer { return &hello{} })
app.Route("/hello", func() app.Composer { return &hello{} })
app.RunWhenOnBrowser()

// Standard HTTP routing (server-side):
Expand Down

0 comments on commit d310db9

Please sign in to comment.