annotate static/js/fancybox/jquery.mousewheel-3.0.2.pack.js @ 70:f26cdda0ad8b

Remove unneeded TEMPLATE_DIR entry.
author Brian Neal <bgneal@gmail.com>
date Sat, 14 Apr 2012 15:49:28 -0500
parents efb2da0b5d10
children
rev   line source
bgneal@26 1 /*! Copyright (c) 2009 Brandon Aaron (http://brandonaaron.net)
bgneal@26 2 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
bgneal@26 3 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
bgneal@26 4 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
bgneal@26 5 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
bgneal@26 6 *
bgneal@26 7 * Version: 3.0.2
bgneal@26 8 *
bgneal@26 9 * Requires: 1.2.2+
bgneal@26 10 */
bgneal@26 11
bgneal@26 12 (function(b){function d(a){var f=[].slice.call(arguments,1),e=0;a=b.event.fix(a||window.event);a.type="mousewheel";if(a.wheelDelta)e=a.wheelDelta/120;if(a.detail)e=-a.detail/3;f.unshift(a,e);return b.event.handle.apply(this,f)}var c=["DOMMouseScroll","mousewheel"];b.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],d,false);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],
bgneal@26 13 d,false);else this.onmousewheel=null}};b.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);