From b362284197cde5ddf140f9761de261f56c0188b4 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Tue, 3 Jul 2012 13:15:23 +0200 Subject: [PATCH] Remove jquery.hook.js, no longer used. --- jquery.hook.js | 78 -------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 jquery.hook.js diff --git a/jquery.hook.js b/jquery.hook.js deleted file mode 100644 index 259d315cb..000000000 --- a/jquery.hook.js +++ /dev/null @@ -1,78 +0,0 @@ -/*! -* jQuery.hook v1.0 -* -* Copyright (c) 2009 Aaron Heckmann -* Dual licensed under the MIT and GPL licenses: -* http://www.opensource.org/licenses/mit-license.php -* http://www.gnu.org/licenses/gpl.html -*/ -/** -* Provides the ability to hook into any jQuery.fn[method] -* with onbeforeMETHOD, onMETHOD, and onafterMETHOD. -* -* Pass in a string or array of method names you want -* to hook with onbefore, on, or onafter. -* -* Example: -* jQuery.hook('show'); -* jQuery(selector).bind('onbeforeshow', function (e) { alert(e.type);}); -* jQuery(selector).show() -> alerts 'onbeforeshow' -* -* jQuery.hook(['show','hide']); -* jQuery(selector) -* .bind('onbeforeshow', function (e) { alert(e.type);}) -* .bind('onshow', function (e) { alert(e.type);}) -* .bind('onaftershow', function (e) { alert(e.type);}) -* .bind('onafterhide', function (e) { alert("The element is now hidden.");}); -* jQuery(selector).show().hide() -* -> alerts 'onbeforeshow' then alerts 'onshow', then alerts 'onaftershow', -* then after the element is hidden alerts 'The element is now hidden.' -* -* -* You can also unhook what you've hooked into by calling jQuery.unhook() passing -* in your string or array of method names to unhook. -* -*/ -(function($){ - $.hook = function (fns) { - fns = typeof fns === 'string' ? - fns.split(' ') : - $.makeArray(fns) - ; - - jQuery.each( fns, function (i, method) { - var old = $.fn[ method ]; - - if ( old && !old.__hookold ) { - - $.fn[ method ] = function () { - this.triggerHandler('onbefore'+method); - this.triggerHandler('on'+method); - var ret = old.apply(this, arguments); - this.triggerHandler('onafter'+method); - return ret; - }; - - $.fn[ method ].__hookold = old; - - } - }); - - }; - - $.unhook = function (fns) { - fns = typeof fns === 'string' ? - fns.split(' ') : - $.makeArray(fns) - ; - - jQuery.each( $.makeArray(fns), function (i, method) { - var cur = $.fn[ method ]; - - if ( cur && cur.__hookold ) { - $.fn[ method ] = cur.__hookold; - } - }); - - }; -})(jQuery);