mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-07 16:10:58 +00:00
12 lines
255 B
JavaScript
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" );
|
|
|
|
});
|
|
|
|
});
|