1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00
wallabag/themes/baggy/js/autoClose.js
2014-02-12 21:58:40 +01:00

7 lines
136 B
JavaScript

$(document).ready(function() {
current_url = window.location.href
if (current_url.match("&closewin=true")) {
window.close();
}
});