You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix #nav_main click handler's wrong behavior on mobile
In the event handler, 'this' is not a jquery object, but a DOM object.
Instead of using $(this) to fix this problem, $mainNav is used
because it is already created and no need to be re-wrapped
as jquery object.
$varname style is used for preventing this type of problem.
0 commit comments