소스 검색

Fix back button double click

Denis K 8 년 전
부모
커밋
5627e380b8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      jet/static/jet/js/src/features/sidebar/popup.js

+ 2 - 2
jet/static/jet/js/src/features/sidebar/popup.js

@@ -106,7 +106,7 @@ SideBarPopup.prototype = {
             }
         });
 
-        $sidebar.find('.sidebar-back').on('click', function(e) {
+        $sidebar.find('.sidebar-back').on('click touchend', function(e) {
             e.preventDefault();
             self.closePopup($popupContainer);
         });
@@ -180,7 +180,7 @@ SideBarPopup.prototype = {
     initSectionLists: function($sidebar) {
         var self = this;
 
-        $sidebar.find('.sidebar-popup-list-item-link').on('mouseenter', function () {
+        $sidebar.find('.sidebar-popup-list-item-link').on('mouseenter', function() {
             self.$currentSectionListItem = $(this).closest('.sidebar-popup-list-item');
             self.resetCurrentSectionListItems();
             self.$currentSectionListItem.addClass('selected');