Author: fmeschbe
Date: Wed Jun 25 02:19:37 2008
New Revision: 671483

URL: http://svn.apache.org/viewvc?rev=671483&view=rev
Log:
FELIX-592 use firstChild property instead of innerHTML to check
for element content

Modified:
    felix/trunk/webconsole/src/main/resources/res/ui/datatable.js

Modified: felix/trunk/webconsole/src/main/resources/res/ui/datatable.js
URL: 
http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/datatable.js?rev=671483&r1=671482&r2=671483&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/datatable.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/datatable.js Wed Jun 25 
02:19:37 2008
@@ -206,7 +206,7 @@
     var span = document.getElementById( 'entry' + id + '_details' );
     if (span)
     {
-        if (span.innerHTML)
+        if (span.firstChild)
         {
             clearChildren( span );
             newLinkValue( id, appRoot + "/res/imgs/right.gif" );


Reply via email to