jquery-mobile/js/jquery.mobile.nojs.js
Ghislain Seguin 63292b805d AMDized
2011-12-01 17:28:08 -08:00

12 lines
255 B
JavaScript

/*
* "nojs" plugin - class to make elements hidden to A grade browsers
*/
define( [ "jquery" ], function( $, undefined ) {
$( document ).bind( "pagecreate create", function( e ){
$( ":jqmData(role='nojs')", e.target ).addClass( "ui-nojs" );
});
});