Posted by jpmckinney on September 28, 2009 at 2:45pm
| Project: | JavaScript Theming |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | reviewed & tested by the community |
Issue Summary
Line 369 of js_theming.table.js
cell = {data: cell, class:'active'};
Change it to:
cell = {data: cell, 'class':'active'};
Otherwise, Safari will complain about a syntax error.
Comments
#1
#2
This patch fixes a Safari bug (bareword class) and an IE bug (trailing comma). It also gets rid of trailing newlines at the end of the file.
#3
It would be nice if this was commited. It works