mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Merge pull request #2695 from goldquest/dev_overallImportBug
On Import, when successful, loading circle didn't go away
This commit is contained in:
commit
8af8c37896
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ var pad = {
|
||||||
{
|
{
|
||||||
var newHref = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname) || clientVars.padId;
|
var newHref = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname) || clientVars.padId;
|
||||||
newHref = newHref[0];
|
newHref = newHref[0];
|
||||||
if (options != null){
|
if (typeof options != "undefined" && options != null){
|
||||||
newHref = newHref + '?' + options;
|
newHref = newHref + '?' + options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue