Blame view

bower_components/jquery/src/manipulation/_evalUrl.js 240 Bytes
c5169e0e   Renato De Donato   a new hope
1
  define([
74249687   Luigi Serra   Cross browser con...
2
3
4
5
  	"../ajax"
  ], function( jQuery ) {
  
  jQuery._evalUrl = function( url ) {
c5169e0e   Renato De Donato   a new hope
6
  	return jQuery.ajax({
74249687   Luigi Serra   Cross browser con...
7
  		url: url,
74249687   Luigi Serra   Cross browser con...
8
9
10
11
12
  		type: "GET",
  		dataType: "script",
  		async: false,
  		global: false,
  		"throws": true
c5169e0e   Renato De Donato   a new hope
13
  	});
74249687   Luigi Serra   Cross browser con...
14
15
16
17
  };
  
  return jQuery._evalUrl;
  
c5169e0e   Renato De Donato   a new hope
18
  });