1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00
wallabag/app/Resources/static/themes/baggy/js/autoClose.js
2016-06-09 19:02:38 +02:00

8 lines
189 B
JavaScript

var $ = global.jquery = require('jquery');
$(document).ready(function () {
var currentUrl = window.location.href;
if (currentUrl.match('&closewin=true')) {
window.close();
}
});