forked from wallabag/wallabag
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
$(document).ready(function() {
|
|
current_url = window.location.href
|
|
if (current_url.match("&autoclose=true")) {
|
|
window.close();
|
|
}
|
|
}); |