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

Status:active» needs review

#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.

AttachmentSize
example.patch 620 bytes

#3

Status:needs review» reviewed & tested by the community

It would be nice if this was commited. It works

nobody click here