X-Git-Url: http://www.average.org/gitweb/?p=mkgallery.git;a=blobdiff_plain;f=include%2Fshow.js;h=5016928d2c1cef6718a1298260954e8616a3e461;hp=4bcd28ea0c758aefe48159e620ca23ae239a465f;hb=2442719e0866f7733d1b171307d1a39ffdb8b8cf;hpb=8885ed7401ea77ca4c4ae1927c78df7891d61f63 diff --git a/include/show.js b/include/show.js index 4bcd28e..5016928 100644 --- a/include/show.js +++ b/include/show.js @@ -60,10 +60,23 @@ var Show = new Class({ curr: {}, next: {}, }; +/* + * thescripts.com/forum/thread170365.html + */ + var hashpos = document.URL.search(/#/); + if (hashpos > 0) { + this.baseurl = document.URL.slice(0,hashpos); + } else { + this.baseurl = document.URL + } + 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'). + this.ondisplay = this.prevdisplay.clone(). injectInside(this.container.container); this.loadingdiv = new Element('div'). addClass('loading').setStyles({ @@ -94,7 +107,7 @@ var Show = new Class({ if (this.currentid > 0) { this.show(this.currentid-1); } else { - alert('show.prev called beyond first element'); + /* alert('show.prev called beyond first element'); */ } }, @@ -111,11 +124,16 @@ var Show = new Class({ this.controls.running(1); }, + toggleplay: function(){ + if (this.isplaying) { this.stop(); } + else { this.play(); } + }, + next: function(){ if (this.currentid < this.vimgs.length-1) { this.show(this.currentid+1); } else { - alert('show.next called beyond last element'); + /* alert('show.next called beyond last element'); */ } }, @@ -125,6 +143,7 @@ var Show = new Class({ this.ondisplay.setStyle('display', 'none'); this.stopfx(); this.options.cbExit(); + document.location.href = this.baseurl; }, comm: function(){ @@ -137,6 +156,7 @@ var Show = new Class({ this.options.cbStart(); this.isplaying = play; this.controls.running(this.isplaying); + this.updatecoords(); this.show(id); return false; /* to make it usable from href links */ }, @@ -159,8 +179,9 @@ var Show = new Class({ this.pendingload = true; this.showloading(); } + document.location.href = this.baseurl+'#'+this.vimgs[id][0]; this.controls.info(id,this.vimgs.length, - this.vimgs[id][0], + '#'+this.vimgs[id][0], this.vimgs[id][1]); },