Parcourir la source

Fix theme click hash

Denis K il y a 8 ans
Parent
commit
95083993b3

+ 0 - 1
jet/static/jet/js/src/features/dashboard.js

@@ -28,7 +28,6 @@ Dashboard.prototype = {
 
         $dashboard.find('.dashboard-tools-toggle').on('click', function (e) {
             e.preventDefault();
-
             $dashboard.find('.dashboard-tools').toggleClass('visible');
         });
 

+ 3 - 1
jet/static/jet/js/src/features/themes.js

@@ -10,7 +10,9 @@ Themes.prototype = {
         $('.user-tools-welcome-msg').after($chooser);
     },
     initChooser: function() {
-        $('.choose-theme').on('click', function () {
+        $('.choose-theme').on('click', function (e) {
+            e.preventDefault();
+            
             var $link = $(this);
 
             $.cookie('JET_THEME', $link.data('theme'), { expires: 365, path: '/' });