Merge pull request #2515 from ether/rewrite-pad-path

seems right
pull/2517/head
John McLear 2015-02-11 02:07:58 +00:00
commit 7e7eb542be
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,8 @@ var padimpexp = (function()
pad = _pad;
//get /p/padname
var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname);
// if /p/ isn't available due to a rewrite we use the clientVars padId
var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname) || clientVars.padId;
//get http://example.com/p/padname without Params
var pad_root_url = document.location.protocol + '//' + document.location.host + document.location.pathname;