mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 22:59:02 +00:00
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
$(document).ready(function() {
|
|
current_url = window.location.href
|
|
if (current_url.match("&closewin=true")) {
|
|
window.close();
|
|
}
|
|
});
|