aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/readyException.js
blob: ff5296a3ce02f0f2cdd756985a16ca92a9959966 (plain)
1
2
3
4
5
6
7
import { jQuery } from "../core.js";

jQuery.readyException = function( error ) {
	window.setTimeout( function() {
		throw error;
	} );
};