mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-19 13:51:00 +00:00
73 lines
2 KiB
JavaScript
73 lines
2 KiB
JavaScript
(function( $, undefined ) {
|
|
|
|
$.widget( "mobile.fetchlink", $.mobile.widget, {
|
|
options: {
|
|
initSelector: ":jqmData(role='fetchlink')"
|
|
},
|
|
_create: function() {
|
|
|
|
$( this.element ).click(function() {
|
|
var el = $( this ),
|
|
url = el.attr( "href" ),
|
|
target = el.data( "target" ),
|
|
targetEl = target && $( target ) || el,
|
|
fragment = el.data( "fragment" ),
|
|
load = fragment || ":jqmData(role='page')",
|
|
threshold = screen.width > parseInt( el.data( "breakpoint" ) || 0 ),
|
|
methods = [ "append", "prepend", "replace", "before", "after" ],
|
|
method = "html",
|
|
url;
|
|
|
|
if ( threshold ) {
|
|
for( var ml = methods.length, i=0; i < ml; i++ ){
|
|
if( el.is( "[data-include='" + methods[ i ] + "']" ) ){
|
|
method = methods[ i ];
|
|
}
|
|
}
|
|
|
|
if ( method === "replace" ){
|
|
method += "With";
|
|
}
|
|
|
|
if ( url && method ) {
|
|
|
|
targetEl.ajaxStart(function(){
|
|
$(this).trigger('inlineLoader');
|
|
});
|
|
|
|
$.get( url, function( data ) {
|
|
|
|
/* Swiped from the jQuery core; $.get() should really be replaced by .load() */
|
|
var rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
|
data = $( $("<div/>").append( data.replace( rscript, "" ) ).find( load ) )
|
|
responseEl = !fragment ? $( data.html() ) : data;
|
|
|
|
setTimeout(function() {
|
|
targetEl[ method ]( responseEl );
|
|
responseEl
|
|
.trigger( "create" )
|
|
.trigger( "fetchlink", { target : targetEl, data: responseEl } );
|
|
responseEl
|
|
.find('[data-role="header"]')
|
|
.trigger( "create" )
|
|
}, 2000 );
|
|
});
|
|
|
|
}
|
|
}
|
|
return false;
|
|
});
|
|
|
|
}
|
|
});
|
|
|
|
$( document ).bind( "inlineLoader", function( e ){
|
|
$( e.target ).html( "<div class='ui-loader-inline'><span class='ui-icon ui-icon-loading spin'></span></div>" );
|
|
});
|
|
|
|
//auto self-init widgets
|
|
$( document ).bind( "pagecreate create", function( e ){
|
|
$( $.mobile.fetchlink.prototype.options.initSelector, e.target ).fetchlink();
|
|
});
|
|
|
|
})( jQuery );
|