Denis K hace 8 años
padre
commit
d6408b0b71

+ 8 - 5
jet/static/jet/js/src/features/tooltips.js

@@ -10,13 +10,16 @@ require('browsernizr');
 var Tooltips = function() { };
 
 Tooltips.prototype = {
+    initTooltips: function() {
+        if (!$(document.documentElement).hasClass('touchevents')) {
+            $('a[title], .tooltip[title]').tooltip({
+                track: true
+            });
+        }
+    },
     run: function() {
         try {
-            if (!$(document.documentElement).hasClass('touchevents')) {
-                $('a[title], .tooltip[title]').tooltip({
-                    track: true
-                });
-            }
+            this.initTooltips();
         } catch (e) {
             console.error(e, e.stack);
         }

+ 21 - 18
jet/static/jet/js/src/features/touchmove-non-scrollable.js

@@ -3,27 +3,30 @@ var $ = require('jquery');
 var TouchMoveNonScrollable = function() { };
 
 TouchMoveNonScrollable.prototype = {
-    run: function() {
-        try {
-            $(document).on('touchmove', function(e) {
-                var allowed = true;
-                var $node = $(e.target);
+    initTouchMoveHandler: function() {
+        $(document).on('touchmove', function(e) {
+            var allowed = true;
+            var $node = $(e.target);
 
-                while ($node.length > 0) {
-                    if ($node.hasClass('non-scrollable')) {
-                        allowed = false;
-                        break;
-                    } else if ($node.hasClass('scrollable') || $node.hasClass('ui-widget-overlay')) {
-                        break;
-                    } else {
-                        $node = $node.parent();
-                    }
+            while ($node.length > 0) {
+                if ($node.hasClass('non-scrollable')) {
+                    allowed = false;
+                    break;
+                } else if ($node.hasClass('scrollable') || $node.hasClass('ui-widget-overlay')) {
+                    break;
+                } else {
+                    $node = $node.parent();
                 }
+            }
 
-                if (!allowed) {
-                    e.preventDefault();
-                }
-            });
+            if (!allowed) {
+                e.preventDefault();
+            }
+        });
+    },
+    run: function() {
+        try {
+            this.initTouchMoveHandler();
         } catch (e) {
             console.error(e, e.stack);
         }