Fix url adapt param

master
Alexander Kondratyev 9 years ago
parent 74cd600ea6
commit 151e27fee6
  1. 2
      zsite/static/js/snippets.js

@ -164,7 +164,7 @@ $(function() {
return window.location; return window.location;
} }
window.location = url + (url.indexOf('?')>0 ? '&' : '?') + paramName + '=' + paramValue; window.location = url + '#' + (url.indexOf('?')>0 ? '&' : '?') + paramName + '=' + paramValue;
return window.location; return window.location;
}; };
}); });
Loading…
Cancel
Save