From 283ceff6555c129d7e03f639aa8a3e158dd2e1ac Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Sun, 31 Aug 2008 20:42:36 +0000 Subject: [PATCH 1/1] make image containers initially invisible --- include/show.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/show.js b/include/show.js index 4bcd28e..248dee6 100644 --- a/include/show.js +++ b/include/show.js @@ -62,8 +62,10 @@ var Show = new Class({ }; this.updatecoords(); this.prevdisplay = new Element('img'). + setStyle('opacity', 0). injectInside(this.container.container); this.ondisplay = new Element('img'). + setStyle('opacity', 0). injectInside(this.container.container); this.loadingdiv = new Element('div'). addClass('loading').setStyles({ -- 2.39.2