mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-12 16:58:37 +00:00
use 2 seprate variable for autoclosing windows to avoid to quick closing when sharing, the popup can be close before the link is save
This commit is contained in:
parent
363bc4eb86
commit
f616ab60ef
2 changed files with 3 additions and 3 deletions
|
@ -361,7 +361,7 @@ class Poche
|
||||||
if ($autoclose == TRUE) {
|
if ($autoclose == TRUE) {
|
||||||
Tools::redirect('?view=home');
|
Tools::redirect('?view=home');
|
||||||
} else {
|
} else {
|
||||||
Tools::redirect('?view=home&autoclose=true');
|
Tools::redirect('?view=home&closewin=true');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
current_url = window.location.href
|
current_url = window.location.href
|
||||||
if (current_url.match("&autoclose=true")) {
|
if (current_url.match("&closewin=true")) {
|
||||||
window.close();
|
window.close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue