[TemporaryStorage] add files required for SDK build
[samples/web/TemporaryStorage.git] / tizen-web-ui-fw / latest / js / src / jquery.mobile.links.js
1 (function( $, undefined ) {
2
3 $.mobile.$document.bind( "pagecreate create", function( e ) {
4
5         //links within content areas, tests included with page
6         $( e.target )
7                 .find( "a" )
8                 .jqmEnhanceable()
9                 .not( ".ui-btn, .ui-link-inherit, :jqmData(role='none'), :jqmData(role='nojs')" )
10                 .addClass( "ui-link" );
11
12 });
13
14 })( jQuery );
15