Skip to content

Commit

Permalink
Need a case insensitive comparison.
Browse files Browse the repository at this point in the history
More for Bug: 13057
  • Loading branch information
mrubinsk committed Jun 17, 2014
1 parent 4f1d4c6 commit 0b76972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kronolith/js/kronolith.js
Expand Up @@ -4803,7 +4803,7 @@ KronolithCore = {

case 'kronolithViewYear':
var tmp = orig;
if (tmp.tagName != 'td' && tmp.tagName != 'th') {
if (tmp.tagName.toLowerCase() != 'td' && tmp.tagName.toLowerCase() != 'th') {
tmp = tmp.up('td');
}
if (tmp) {
Expand Down

0 comments on commit 0b76972

Please sign in to comment.