From 1062bd167dfe2a7d9e5f51d1eff1568416da9962 Mon Sep 17 00:00:00 2001 From: Adrie den Hartog Date: Wed, 16 Nov 2011 12:00:05 +0100 Subject: [PATCH] Added 3 missing semi-colons which prevented minifying the code. --- jquery.cycle.all.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jquery.cycle.all.js b/jquery.cycle.all.js index d57fb72..255b550 100644 --- a/jquery.cycle.all.js +++ b/jquery.cycle.all.js @@ -26,7 +26,7 @@ function log() { } $.expr[':'].paused = function(el) { return el.cyclePause; -} +}; // the options arg can be... @@ -299,7 +299,7 @@ function buildOptions($cont, $slides, els, options, o) { z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i; else z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i; - $(this).css('z-index', z) + $(this).css('z-index', z); }); // make sure first slide is visible @@ -879,7 +879,7 @@ $.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) { cb(opts.nextSlide, els[opts.nextSlide]); go(els,opts,1,opts.currSlide < i); // trigger the trans // return false; // <== allow bubble - } + }; if ( /mouseenter|mouseover/i.test(opts.pagerEvent) ) { $a.hover(pagerFn, function(){/* no-op */} );