1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-02-22 05:41:50 -05:00
wallabag/themes/baggy/js/autoClose.js

7 lines
136 B
JavaScript
Raw Normal View History

2014-02-12 21:58:40 +01:00
$(document).ready(function() {
current_url = window.location.href
if (current_url.match("&closewin=true")) {
window.close();
}
});