1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-12 16:58:37 +00:00
wallabag/themes/_global/js/autoClose.js
2014-11-18 10:01:37 -05:00

6 lines
136 B
JavaScript

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