X-Git-Url: http://www.average.org/gitweb/?p=mkgallery.git;a=blobdiff_plain;f=include%2Fshow.js;h=806d3c12604c11fe18a5d833a6d06b29b8e73c18;hp=f7f555ec02fcc94673fcb681957bbc1f55117c6f;hb=5769f3847a4cf55ff196e1840aaeca66c99e018d;hpb=17c8ace39004518e1481425779480b162d5b521c diff --git a/include/show.js b/include/show.js index f7f555e..806d3c1 100644 --- a/include/show.js +++ b/include/show.js @@ -72,12 +72,11 @@ var Show = new Class({ this.updatecoords(); this.prevdisplay = new Element('img'). + set('class', 'mainformat'). setProperty('alt', 'Current Image'). setStyle('opacity', 0). injectInside(this.container.container); - this.ondisplay = new Element('img'). - setProperty('alt', 'Current Image'). - setStyle('opacity', 0). + this.ondisplay = this.prevdisplay.clone(). injectInside(this.container.container); this.loadingdiv = new Element('div'). addClass('loading').setStyles({ @@ -105,6 +104,8 @@ var Show = new Class({ /* prev, play, stop, next, exit, comm are methods for button presses */ prev: function(){ + this.cleartimer(); + this.stopfx(); if (this.currentid > 0) { this.show(this.currentid-1); } else { @@ -113,9 +114,8 @@ var Show = new Class({ }, stop: function(){ - if (this.isplaying) { $clear(this.timer); } + this.cleartimer() this.isplaying = false; - $clear(this.timer); this.controls.running(0); }, @@ -131,6 +131,8 @@ var Show = new Class({ }, next: function(){ + this.cleartimer(); + this.stopfx(); if (this.currentid < this.vimgs.length-1) { this.show(this.currentid+1); } else { @@ -139,12 +141,12 @@ var Show = new Class({ }, exit: function(){ - if (this.isplaying) { $clear(this.timer); } + this.cleartimer(); + this.stopfx(); this.prevdisplay.setStyle('display', 'none'); this.ondisplay.setStyle('display', 'none'); - this.stopfx(); - this.options.cbExit(); document.location.href = this.baseurl; + this.options.cbExit(); }, comm: function(){ @@ -313,6 +315,10 @@ var Show = new Class({ this.loadingdiv.setStyle('display', 'none'); }, + cleartimer: function(){ + if (this.isplaying) { $clear(this.timer); } + }, + stopfx: function(){ if (this.fx) this.fx.cancel(); },