From 2c2cfb40969198ecc9911d90e44b70088966172b Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Sat, 14 Apr 2007 06:11:47 +0000 Subject: [PATCH] Hack to disable the snagging of normal Javascript errors. There must be a better way of doing this. --- www/masterkey/js/jquery.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/masterkey/js/jquery.js b/www/masterkey/js/jquery.js index fdb8764..3e07662 100644 --- a/www/masterkey/js/jquery.js +++ b/www/masterkey/js/jquery.js @@ -7,7 +7,7 @@ if(typeof window.jQuery == "undefined") { * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * - * $Date: 2007-03-22 16:08:20 $ + * $Date: 2007-04-14 06:11:47 $ * $Rev: 1465 $ */ @@ -1824,6 +1824,7 @@ jQuery.extend({ }, handleError: function( s, xml, status, e ) { + throw(e); // If a local callback was specified, fire it if ( s.error ) s.error( xml, status, e ); -- 1.7.10.4