mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
- fixed double click mobile account menu (remove event "touchstart")
This commit is contained in:
@@ -6,7 +6,7 @@ jQuery(document).ready(function() {
|
||||
jQuery('.um-account-tab[data-tab='+current_tab+']').show();
|
||||
}
|
||||
|
||||
jQuery(document).on('touchstart click','.um-account-side li a',function(e){
|
||||
jQuery(document).on('click','.um-account-side li a',function(e){
|
||||
e.preventDefault();
|
||||
var link = jQuery(this);
|
||||
|
||||
@@ -30,7 +30,7 @@ jQuery(document).ready(function() {
|
||||
});
|
||||
});
|
||||
|
||||
jQuery(document).on('touchstart click','.um-account-nav a',function(e){
|
||||
jQuery(document).on('click','.um-account-nav a',function(e){
|
||||
e.preventDefault();
|
||||
|
||||
var tab_ = jQuery(this).attr('data-tab');
|
||||
|
||||
Reference in New Issue
Block a user