mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2025-03-14 07:19:48 -04:00
Fix shortURL redirection
This commit is contained in:
parent
ffd2683cae
commit
f12635d2b3
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ $(document).on('click', "[data-action='show']", function(e) {
|
|||
|
||||
$(window).on('hashchange', function(e) {
|
||||
var path = document.location.hash.split('#')[1] || document.location.hash || 'home';
|
||||
showPage(path);
|
||||
if (path.charAt(0) != '!') showPage(path);
|
||||
});
|
||||
|
||||
$(document).on("page:show", function(e, page){
|
||||
|
|
Loading…
Reference in a new issue