aboutsummaryrefslogtreecommitdiffstats
path: root/js/craftmine.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/craftmine.js')
-rw-r--r--js/craftmine.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/js/craftmine.js b/js/craftmine.js
index 61abbf7..0e95aa3 100644
--- a/js/craftmine.js
+++ b/js/craftmine.js
@@ -70,7 +70,8 @@ function updateMine() {
function init() {
initCraftMine();
- changeTab();
- listSaves();
- window.setInterval(updateMine, 1000);
+ changeTab(); // Switch to tab specified in URL
+ listSaves(); // Update save list on page load
+ window.setInterval(updateMine, 1000); // Increase mine amount every 1 second
+ window.onhashchange = changeTab; // Hook changeTab from js/gui.js to hashchange event
}