sp-magic.de/bower_components/jquery/src/core/readyException.js
2016-11-23 00:12:51 +01:00

14 lines
168 B
JavaScript

define( [
"../core"
], function( jQuery ) {
"use strict";
jQuery.readyException = function( error ) {
window.setTimeout( function() {
throw error;
} );
};
} );