Browse Source

Fixed ios double tap menu issue

Denis K 8 years ago
parent
commit
7adc754c3a
1 changed files with 13 additions and 0 deletions
  1. 13 0
      jet/static/jet/js/src/features/sidebar/popup.js

+ 13 - 0
jet/static/jet/js/src/features/sidebar/popup.js

@@ -184,6 +184,19 @@ SideBarPopup.prototype = {
             self.$currentSectionListItem = $(this).closest('.sidebar-popup-list-item');
             self.resetCurrentSectionListItems();
             self.$currentSectionListItem.addClass('selected');
+        }).on('touchmove touchend', function(e) {
+            var $el = $(this);
+
+            if (e.type == 'touchmove') {
+                $el.data('element_swiped', true);
+                return;
+            }
+
+            if (e.type == 'touchend' && !$el.data('element_swiped')) {
+                window.location = $el.attr('href');
+            }
+
+            $el.data('element_swiped', false);
         });
 
         this.initSectionKeyboardControls();