tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

readyException.js (168B)


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