This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// initialize the jQTouch variable and the current hash, then grab | |
// the app history from local storage | |
var jQT = null; | |
var currentHash = null; | |
var hist = localStorage.getItem("app_history"); | |
// if the history is null, then reset the history list to include | |
// just 'home' | |
if (hist == null){ | |
hist = ["home"]; |