mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
Merge branch 'autoclose-postmessage' into dev
This commit is contained in:
commit
f104b384b9
1 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,15 @@
|
|||
$(document).ready(function() {
|
||||
current_url = window.location.href
|
||||
if (current_url.match("&closewin=true")) {
|
||||
if (location.search.match("&closewin=true")) {
|
||||
if (window.opener) {
|
||||
var msgDiv = $("div.messages");
|
||||
var msg = msgDiv.children("p").text();
|
||||
var status = msgDiv.hasClass("success") ?
|
||||
'success' : 'unknown';
|
||||
var url = $(".tool.link")[0].href;
|
||||
window.opener.postMessage({"wallabag-status": status,
|
||||
"wallabag-msg": msg,
|
||||
"wallabag-url": url }, "*");
|
||||
}
|
||||
window.close();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue