From 5527f9d9dd107c49860360979bcea661d83039e2 Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Fri, 5 Sep 2008 13:12:33 +0000 Subject: [PATCH] wrong way to check if cachel exists... size of first element (with zero 'id' field) was not calculating --- include/show.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/show.js b/include/show.js index fdce267..2d5f5b1 100644 --- a/include/show.js +++ b/include/show.js @@ -284,7 +284,7 @@ var Show = new Class({ }, calcsize: function(cachel){ - if (! cachel.id) { + if (! cachel.url) { return { position: 'absolute', top: 0+'px', -- 2.39.2