Fixed a typo in checkboxradio which causes JS errors.

This commit is contained in:
Martin Kou 2011-02-20 18:32:02 -08:00
parent aacb0751be
commit 796c8642bd

View file

@ -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);
}
}