scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
125 office 1 define([
58 office 2 "../ajax"
3 ], function( jQuery ) {
4  
5 jQuery._evalUrl = function( url ) {
125 office 6 return jQuery.ajax({
58 office 7 url: url,
8 type: "GET",
9 dataType: "script",
10 async: false,
11 global: false,
12 "throws": true
125 office 13 });
58 office 14 };
15  
16 return jQuery._evalUrl;
17  
125 office 18 });