Merge pull request #1386 from ether/fix-import-on-params
fix issue #1369 where params would break importpull/1387/head
commit
c6882aa65a
|
@ -211,9 +211,11 @@ var padimpexp = (function()
|
||||||
pad = _pad;
|
pad = _pad;
|
||||||
|
|
||||||
//get /p/padname
|
//get /p/padname
|
||||||
var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname)
|
var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname);
|
||||||
//get http://example.com/p/padname
|
//get http://example.com/p/padname
|
||||||
var pad_root_url = document.location.href.replace(document.location.pathname, pad_root_path)
|
var pad_root_url = document.location.href.replace(document.location.pathname, pad_root_path);
|
||||||
|
//strip out params IE ?noColor=true
|
||||||
|
pad_root_url = pad_root_url.substring(0, pad_root_url.indexOf('?'));
|
||||||
|
|
||||||
//i10l buttom import
|
//i10l buttom import
|
||||||
$('#importsubmitinput').val(html10n.get("pad.impexp.importbutton"));
|
$('#importsubmitinput').val(html10n.get("pad.impexp.importbutton"));
|
||||||
|
|
Loading…
Reference in New Issue