mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
20 lines
No EOL
502 B
JavaScript
20 lines
No EOL
502 B
JavaScript
/*
|
|
* jQuery Mobile Framework : "fieldcontain" plugin - simple class additions to make form row separators
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
|
|
(function( $, undefined ) {
|
|
|
|
$( document ).bind( "pagecreate create", function( e ){
|
|
|
|
//links within content areas
|
|
$( e.target )
|
|
.find( "a" )
|
|
.not( ".ui-btn, .ui-link-inherit, :jqmData(role='none'), :jqmData(role='nojs')" )
|
|
.addClass( "ui-link" );
|
|
|
|
});
|
|
|
|
})( jQuery ); |