Blame view

bower_components/jquery/src/manipulation/_evalUrl.js 326 Bytes
a1a3bc73   Luigi Serra   graphs updates
1
  define( [
74249687   Luigi Serra   Cross browser con...
2
3
4
5
  	"../ajax"
  ], function( jQuery ) {
  
  jQuery._evalUrl = function( url ) {
a1a3bc73   Luigi Serra   graphs updates
6
  	return jQuery.ajax( {
74249687   Luigi Serra   Cross browser con...
7
  		url: url,
a1a3bc73   Luigi Serra   graphs updates
8
9
  
  		// Make this explicit, since user can override this through ajaxSetup (#11264)
74249687   Luigi Serra   Cross browser con...
10
11
12
13
14
  		type: "GET",
  		dataType: "script",
  		async: false,
  		global: false,
  		"throws": true
a1a3bc73   Luigi Serra   graphs updates
15
  	} );
74249687   Luigi Serra   Cross browser con...
16
17
18
19
  };
  
  return jQuery._evalUrl;
  
a1a3bc73   Luigi Serra   graphs updates
20
  } );