domains/timable.com.js
authorAlan Knowles <alan@roojs.com>
Thu, 11 Jan 2018 02:46:44 +0000 (10:46 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 11 Jan 2018 02:46:44 +0000 (10:46 +0800)
domains/timable.com.js

index e69de29..4b7b321 100644 (file)
@@ -0,0 +1,20 @@
+
+(function (args) {
+    var disnone = function(ar) {
+
+         for (var i =0;i < ar.length;i++) {
+            ar[i].style.display = 'none';
+        }
+    }
+    
+    
+    
+    window.setInterval(function() {
+        try {
+           disnone(document.getElementsByClassName('ui-widget-overlay'));
+           disnone(document.getElementsByClassName('ui-dialog'));
+         } catch(e) {}
+    },500);
+    
+})();
+