Skip to content

Commit ae06612

Browse files
committed
Clear our preventClickDefault and stopClickPropagation locals in the live click handler.
1 parent 3c69215 commit ae06612

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

js/jquery.mobile.navigation.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,9 +789,11 @@
789789
$( "a" ).live( "click", function(event) {
790790
if (preventClickDefault){
791791
event.preventDefault();
792+
preventClickDefault = false;
792793
}
793794
if (stopClickPropagation){
794795
event.stopPropagation();
796+
stopClickPropagation = false;
795797
}
796798
});
797799

0 commit comments

Comments
 (0)