jQuery-One-Page-Nav icon indicating copy to clipboard operation
jQuery-One-Page-Nav copied to clipboard

Firefox Hash Jump fix

Open arthurshlain opened this issue 9 years ago • 1 comments

//Do we need to change the hash? if(self.config.changeHash) { /window.location.hash = newLoc;/ if(history.pushState) { history.pushState(null, null, newLoc); } else { location.hash = newLoc; } }

arthurshlain avatar Nov 02 '14 20:11 arthurshlain