SafeAF / enterprise-log-search-and-archive

Automatically exported from code.google.com/p/enterprise-log-search-and-archive
0 stars 0 forks source link

Extraneous Comma Prevents Load in IE or FF #78

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open ELSA in Firefox or IE

What is the expected output? What do you see instead?

I expect to see the user interface.

I see a blank screen.

What version of the product are you using? On what operating system?

We are using ELSA from SVN (unsure version) on Ubuntu 12.04 LTS

Please provide any additional information below.

To fix the issue we removed a comma on line 1475 of elsa.js so that it looks 
like this:

            var oTableCfg = {
                dynamicData: true,
                sortedBy : {key:"timestamp", dir:YAHOO.widget.DataTable.CLASS_DESC}
            };

It was orginally

            var oTableCfg = {
                dynamicData: true,
                sortedBy : {key:"timestamp", dir:YAHOO.widget.DataTable.CLASS_DESC},
            };

Original issue reported on code.google.com by ben.st...@gmail.com on 26 Sep 2012 at 7:29

GoogleCodeExporter commented 8 years ago
Fixed in rev 459. Thanks for reporting!

Original comment by mchol...@gmail.com on 27 Sep 2012 at 9:35