From 26e618930f94a53875a461a44524a930d5e4b8a1 Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Tue, 2 Sep 2008 13:54:44 +0000 Subject: [PATCH] take care of showing the "loading" animation, at the right place --- include/show.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/show.js b/include/show.js index 535c421..c333249 100644 --- a/include/show.js +++ b/include/show.js @@ -309,7 +309,11 @@ var Show = new Class({ }, showloading: function(){ - this.loadingdiv.setStyle('display', 'block'); + this.loadingdiv.setStyles({ + display: 'block', + width: this.coords.width, + height: this.coords.height, + }); }, hideloading: function(){ -- 2.39.2