Fixed typo in reference to initSelector default value.

This commit is contained in:
Scott Jehl 2011-07-27 11:58:20 -03:00
parent 705ed4f308
commit 2c4615176d

View file

@ -11,7 +11,7 @@
var initSelector = "input[type='checkbox'],input[type='radio']";
$( document ).bind( "pagecreate create", function( e ){
$( $.mobile.checkboxradio.prototype.options.initSelector, e.target )
$( initSelector, e.target )
.not( ":jqmData(role='none'), :jqmData(role='nojs')" )
.checkboxradio();
});