You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
326B

  1. define( [
  2. "../ajax"
  3. ], function( jQuery ) {
  4. jQuery._evalUrl = function( url ) {
  5. return jQuery.ajax( {
  6. url: url,
  7. // Make this explicit, since user can override this through ajaxSetup (#11264)
  8. type: "GET",
  9. dataType: "script",
  10. async: false,
  11. global: false,
  12. "throws": true
  13. } );
  14. };
  15. return jQuery._evalUrl;
  16. } );