diff --git a/responsiveslides.js b/responsiveslides.js
index 97ff966..326daea 100644
--- a/responsiveslides.js
+++ b/responsiveslides.js
@@ -1,4 +1,4 @@
-/*! ResponsiveSlides.js v1.3
+/*! ResponsiveSlides.js v1.31
* http://responsiveslides.com
* http://viljamis.com
*
@@ -25,7 +25,9 @@
"nextText": "Next", // String: Text for the "next" button
"maxwidth": "", // Integer: Max-width of the slideshow, in pixels
"controls": "", // Selector: Where controls should be appended to, default is after the
- "namespace": "rslides" // String: change the default namespace used
+ "namespace": "rslides", // String: change the default namespace used
+ before: function () {}, // Function: Before callback
+ after: function () {} // Function: After callback
}, options);
return this.each(function () {
@@ -69,7 +71,7 @@
// Fading animation
slideTo = function (idx) {
- $this.trigger(namespace + "-before");
+ settings.before();
$slide
.stop()
.fadeOut(fadeTime, function () {
@@ -81,8 +83,8 @@
.fadeIn(fadeTime, function () {
$(this)
.addClass(visibleClass)
- .css(visible)
- .trigger(namespace + "-after");
+ .css(visible);
+ settings.after();
index = idx;
});
};
@@ -256,6 +258,15 @@
return;
}
+ // Adds active class during slide animation
+ // $(this)
+ // .addClass(namespace + "_active")
+ // .delay(fadeTime)
+ // .queue(function (next) {
+ // $(this).removeClass(namespace + "_active");
+ // next();
+ // });
+
// Determine where to slide
var idx = $slide.index($("." + visibleClass)),
prevIdx = idx - 1,
diff --git a/responsiveslides.min.js b/responsiveslides.min.js
index 810a904..70c4b18 100644
--- a/responsiveslides.min.js
+++ b/responsiveslides.min.js
@@ -1,6 +1,6 @@
-/*! http://responsiveslides.com v1.3 by @viljamis */
-(function(d,D,w){d.fn.responsiveSlides=function(i){var b=d.extend({auto:!0,speed:1E3,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!1,prevText:"Previous",nextText:"Next",maxwidth:"",controls:"",namespace:"rslides"},i);return this.each(function(){w++;var c=d(this),o,q,j,l,m,n=0,e=c.children(),x=e.size(),r=parseFloat(b.speed),y=parseFloat(b.timeout),s=parseFloat(b.maxwidth),g=b.namespace,h=g+w,f=g+"_nav "+h+"_nav",t=g+"_here",k=h+"_on",z=h+"_s",p=d(""),
-A={"float":"left",position:"relative"},E={"float":"none",position:"absolute"},u=function(a){c.trigger(g+"-before");e.stop().fadeOut(r,function(){d(this).removeClass(k).css(E)}).eq(a).fadeIn(r,function(){d(this).addClass(k).css(A).trigger(g+"-after");n=a})};b.random&&(e.sort(function(){return Math.round(Math.random())-0.5}),c.empty().append(e));e.each(function(a){this.id=z+a});c.addClass(g+" "+h);i&&i.maxwidth&&c.css("max-width",s);e.hide().eq(0).addClass(k).css(A).show();if(1"+a+"")});p.append(v);m=p.find("a");i.controls?d(b.controls).append(p):c.after(p);o=function(a){m.closest("li").removeClass(t).eq(a).addClass(t)}}b.auto&&(q=function(){l=setInterval(function(){var a=n+1"+b.prevText+""+b.nextText+"";i.controls?d(b.controls).append(f):c.after(f);var f=d("."+h+"_nav"),B=d("."+h+"_nav.prev");f.bind("click",function(a){a.preventDefault();if(!d("."+k+":animated").length){var c=e.index(d("."+k)),a=c-1,c=c+1s&&c.css("width",s)};C();d(D).bind("resize",function(){C()})}})}})(jQuery,this,0);
\ No newline at end of file
+/*! http://responsiveslides.com v1.31 by @viljamis */
+(function(d,D,v){d.fn.responsiveSlides=function(h){var b=d.extend({auto:!0,speed:1E3,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!1,prevText:"Previous",nextText:"Next",maxwidth:"",controls:"",namespace:"rslides",before:function(){},after:function(){}},h);return this.each(function(){v++;var e=d(this),n,p,i,k,l,m=0,f=e.children(),w=f.size(),q=parseFloat(b.speed),x=parseFloat(b.timeout),r=parseFloat(b.maxwidth),c=b.namespace,g=c+v,y=c+"_nav "+g+"_nav",s=c+"_here",j=g+"_on",z=g+"_s",
+o=d(""),A={"float":"left",position:"relative"},E={"float":"none",position:"absolute"},t=function(a){b.before();f.stop().fadeOut(q,function(){d(this).removeClass(j).css(E)}).eq(a).fadeIn(q,function(){d(this).addClass(j).css(A);b.after();m=a})};b.random&&(f.sort(function(){return Math.round(Math.random())-0.5}),e.empty().append(f));f.each(function(a){this.id=z+a});e.addClass(c+" "+g);h&&h.maxwidth&&e.css("max-width",r);f.hide().eq(0).addClass(j).css(A).show();if(1<
+f.size()){if(x"+a+"")});o.append(u);l=o.find("a");h.controls?d(b.controls).append(o):e.after(o);n=function(a){l.closest("li").removeClass(s).eq(a).addClass(s)}}b.auto&&(p=function(){k=setInterval(function(){var a=m+1"+b.prevText+""+b.nextText+"";h.controls?d(b.controls).append(c):e.after(c);var c=d("."+g+"_nav"),B=d("."+g+"_nav.prev");c.bind("click",function(a){a.preventDefault();if(!d("."+j+":animated").length){var c=f.index(d("."+j)),
+a=c-1,c=c+1r&&e.css("width",r)};C();d(D).bind("resize",function(){C()})}})}})(jQuery,this,0);
\ No newline at end of file