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.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | example.patch | 620 bytes | jpmckinney |
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.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | example.patch | 620 bytes | jpmckinney |
Comments
Comment #1
jpmckinney commentedComment #2
jpmckinney commentedThis 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.
Comment #3
batje commentedIt would be nice if this was commited. It works