readyException.js 168 B

12345678910111213
  1. define( [
  2. "../core"
  3. ], function( jQuery ) {
  4. "use strict";
  5. jQuery.readyException = function( error ) {
  6. window.setTimeout( function() {
  7. throw error;
  8. } );
  9. };
  10. } );