Update of multiple frontend libs.

This commit is contained in:
baldo 2017-05-13 13:25:33 +02:00
commit a9c6ddc03b
276 changed files with 41257 additions and 19300 deletions

View file

@ -1,18 +1,23 @@
define([
define( [
"../ajax"
], function( jQuery ) {
"use strict";
jQuery._evalUrl = function( url ) {
return jQuery.ajax({
return jQuery.ajax( {
url: url,
// Make this explicit, since user can override this through ajaxSetup (#11264)
type: "GET",
dataType: "script",
cache: true,
async: false,
global: false,
"throws": true
});
} );
};
return jQuery._evalUrl;
});
} );