|
From: <j-...@us...> - 2012-01-14 16:47:27
|
Revision: 652
http://openautomation.svn.sourceforge.net/openautomation/?rev=652&view=rev
Author: j-n-k
Date: 2012-01-14 16:47:21 +0000 (Sat, 14 Jan 2012)
Log Message:
-----------
Fix broken "height"-attribute of image-widget
Modified Paths:
--------------
CometVisu/trunk/visu/designs/structure_pure.js
Modified: CometVisu/trunk/visu/designs/structure_pure.js
===================================================================
--- CometVisu/trunk/visu/designs/structure_pure.js 2012-01-14 16:26:53 UTC (rev 651)
+++ CometVisu/trunk/visu/designs/structure_pure.js 2012-01-14 16:47:21 UTC (rev 652)
@@ -696,7 +696,7 @@
if( $p.attr('width' ) ) {
style += 'width:' + $p.attr('width' ) + ';';
} else {
- style += 'width: 100%';
+ style += 'width: 100%;';
}
if( $p.attr('height') ) style += 'height:' + $p.attr('height') + ';';
if( style != '' ) style = 'style="' + style + '"';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|