1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-13 12:55:05 -05:00
wallabag/themes/default/js/autoClose.js

6 lines
136 B
JavaScript

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