Merge branch 'autoclose-postmessage' into dev

This commit is contained in:
Frederik B 2015-07-30 13:50:33 +02:00
commit f104b384b9

View file

@ -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();
}
});