mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-05 05:04:46 +00:00
Fixed a typo in checkboxradio which causes JS errors.
This commit is contained in:
parent
aacb0751be
commit
796c8642bd
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, {
|
|||
var oe = event.originalEvent.touches[0];
|
||||
if( label.data("movestart") ){
|
||||
if( Math.abs( label.data("movestart")[0] - oe.pageX ) > 10 ||
|
||||
Math.abs( abel.data("movestart")[1] - oe.pageY ) > 10 ){
|
||||
Math.abs( label.data("movestart")[1] - oe.pageY ) > 10 ){
|
||||
label.data("moved", true);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue