wallabag/themes/baggy/js/autoClose.js

7 lines
136 B
JavaScript
Raw Normal View History

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