1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-03-06 11:21:03 +00:00
wallabag/themes/baggy/js/autoClose.js
2014-02-12 21:58:40 +01:00

6 lines
136 B
JavaScript

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