diff --git a/getting-started.md b/getting-started.md index a3f5e0d..93eeacb 100644 --- a/getting-started.md +++ b/getting-started.md @@ -31,7 +31,9 @@ The benefits of using Github: A "repository" is basically a "Github project", like The Modding Tree. "Cloning" is downloading a copy of the repository to your computer. -5. Look for The Modding Tree in the list of repositiories (it should be the only one) and click "clone". It will download the files and handle everything. +5. Look for The Modding Tree in the list of repositiories (it should be the only one) and click "clone". + +6. Select that you're using it for your own purposes, and click continue. It will download the files and handle everything. # Using your repository diff --git a/index.html b/index.html index 9a2f180..0d98709 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,6 @@
-

Loading... (If this takes too long it means there was a serious error!)

diff --git a/js/utils.js b/js/utils.js index 787b11a..9584cf8 100644 --- a/js/utils.js +++ b/js/utils.js @@ -406,4 +406,6 @@ document.onkeydown = function(e) { var onFocused = false function focused(x) { onFocused = x -} \ No newline at end of file +} + +document.title = modInfo.name \ No newline at end of file diff --git a/js/v.js b/js/v.js index 4dde6cc..d65adf7 100644 --- a/js/v.js +++ b/js/v.js @@ -286,19 +286,6 @@ function loadVue() { ` }) - Vue.component('vue-title', { - props: ['title'], - watch: { - title: { - immediate: true, - handler() { - document.title = this.title; - } - } - }, - render () { - }, - }) app = new Vue({ el: "#app",