|
From: <j-...@us...> - 2012-04-28 17:10:30
|
Revision: 768
http://openautomation.svn.sourceforge.net/openautomation/?rev=768&view=rev
Author: j-n-k
Date: 2012-04-28 17:10:24 +0000 (Sat, 28 Apr 2012)
Log Message:
-----------
Fix bug reported by harryhirsch3 (incorrect calculation of displayrows)
Modified Paths:
--------------
CometVisu/trunk/visu/plugins/rsslog/structure_plugin.js
Modified: CometVisu/trunk/visu/plugins/rsslog/structure_plugin.js
===================================================================
--- CometVisu/trunk/visu/plugins/rsslog/structure_plugin.js 2012-04-28 12:43:04 UTC (rev 767)
+++ CometVisu/trunk/visu/plugins/rsslog/structure_plugin.js 2012-04-28 17:10:24 UTC (rev 768)
@@ -164,7 +164,7 @@
jQuery(c).html('');
// get height of one entry, calc max num of display items in widget
- var dummyDiv = $('<' + o.wrapper + ' class="rsslogRow odd" id="dummydiv">').append('<li />').appendTo($(c));
+ var dummyDiv = $('<' + o.wrapper + ' class="rsslogRow odd" id="dummydiv">.</li>').appendTo($(c));
var itemheight = dummyDiv.height();
dummyDiv.remove();
var widget=$(c).parent().parent(); // get the parent widget
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|