jquery-mobile/js/jquery.mobile.nojs.js
Ghislain Seguin 1ca9fb6b01 AMDized
2012-01-13 17:20:23 +07: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" );
});
});