domains/timable.com.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     
12     window.setInterval(function() {
13         try {
14            disnone(document.getElementsByClassName('ui-widget-overlay'));
15            disnone(document.getElementsByClassName('ui-dialog'));
16          } catch(e) {}
17     },500);
18     
19 })();
20