Navigation Menu

Skip to content

Commit

Permalink
Bug: 13057 Fix clicking directly on <a> in yearly overview.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 17, 2014
1 parent 11eb0dd commit 4f1d4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kronolith/js/kronolith.js
Expand Up @@ -4804,7 +4804,7 @@ KronolithCore = {
case 'kronolithViewYear':
var tmp = orig;
if (tmp.tagName != 'td' && tmp.tagName != 'th') {
tmp.up('td');
tmp = tmp.up('td');
}
if (tmp) {
if (tmp.retrieve('weekdate') &&
Expand Down

0 comments on commit 4f1d4c6

Please sign in to comment.