Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

readyException.js 168B

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. } );