domains/remove_print_css.js
[app.webkitpdf] / domains / timable.com.js
1
2 (function (args) {
3     var disnone = function(ar) {
4
5          for (var i =0;i < ar.length;i++) {
6             ar[i].style.display = 'none';
7         }
8     }
9      
10     
11     window.setInterval(function() {
12         try {
13            disnone(document.getElementsByClassName('ui-widget-overlay'));
14            disnone(document.getElementsByClassName('ui-dialog'));
15          } catch(e) {}
16     },500);
17     
18 })();
19