Include querystring when force reload of a bare template view.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-08-13 22:09:27 -04:00
parent 565f6caa0d
commit de87f83c05
2 changed files with 4 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
* current location's path as the new hash
*/
document.write('<script type="text/undefined">')
var currentPath = window.location.pathname;
var currentPath = window.location.pathname + window.location.search;
window.location = '/#' + currentPath;
}
</script>