This file contains hidden or 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
// Change window.location.hash without scrolling the page, even in IE | |
// by renaming the element's id temporarily | |
function changeHashWithoutScrolling(hash) { | |
const id = hash.replace(/^.*#/, '') | |
const elem = document.getElementById(id) | |
elem.id = `${id}-tmp` | |
window.location.hash = hash | |
elem.id = id | |
} |
This file contains hidden or 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
/* | |
* Internationalization | |
* | |
* Author: Daniel Erdmann | |
* | |
* 1. Add this File to you Project | |
* | |
* 2. Add the language files to the folder Assets/Resources/I18n. (Filesnames: en.txt, es.txt, pt.txt, de.txt, and so on) | |
* Format: en.txt: es.txt: | |
* =============== ================= |