Ticket #18556: 18556.diff
File 18556.diff, 1.7 KB (added by , 13 years ago) |
---|
-
wp-admin/js/postbox.dev.js
72 72 forcePlaceholderSize: true, 73 73 helper: 'clone', 74 74 opacity: 0.65, 75 start:function(e,ui){ //unbinding the hoverIntent functions 76 $('#wpadminbar').find('li.menupop').hoverIntent({ 77 over:function(e){ 78 //do nothing 79 }, 80 out:function(){ 81 //do nothing 82 } 83 }); 84 }, 75 85 stop: function(e,ui) { 76 86 if ( $(this).find('#dashboard_browser_nag').is(':visible') && 'dashboard_browser_nag' != this.firstChild.id ) { 77 87 $(this).sortable('cancel'); 78 88 return; 79 89 } 80 90 $('#wpadminbar').find('li.menupop').hoverIntent({ //Binding the hoverIntent functions back 91 over: function(e){ 92 $(this).addClass('hover'); 93 }, 94 out: function(e){ 95 $(this).removeClass('hover'); 96 }, 97 timeout: 180, 98 sensitivity: 7, 99 interval: 100 100 }); 81 101 postboxes.save_order(page); 82 102 }, 83 103 receive: function(e,ui) {