This commit is contained in:
John McLear 2015-05-05 20:41:40 +01:00
parent 0a9c631410
commit 48c2b7cde1
1 changed files with 5 additions and 4 deletions

View File

@ -456,10 +456,11 @@ var pad = {
},
switchToPad: function(padId)
{
var options = document.location.href.split('?')[1];
var newHref = "/p/" + padId;
if (options != null)
newHref = newHref + '?' + options;
var newHref = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname) || clientVars.padId;
newHref = newHref[0];
if (options != null){
newHref = newHref + '?' + options;
}
if(window.history && window.history.pushState)
{