Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / app / policyApp / libs / bower_components / jquery / src / manipulation / _evalUrl.js
1 define([
2         "../ajax"
3 ], function( jQuery ) {
4
5 jQuery._evalUrl = function( url ) {
6         return jQuery.ajax({
7                 url: url,
8                 type: "GET",
9                 dataType: "script",
10                 async: false,
11                 global: false,
12                 "throws": true
13         });
14 };
15
16 return jQuery._evalUrl;
17
18 });