Skip to content

Commit

Permalink
Insert space between time and title to allow linebreaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Feb 24, 2014
1 parent aee554a commit 778e4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kronolith/js/kronolith.js
Expand Up @@ -2134,7 +2134,7 @@ KronolithCore = {
if (!event.start.equals(event.end)) {
time.insert('-' + event.end.toString(Kronolith.conf.time_format));
}
div.insert(time);
div.insert(time).insert(' ');
}
div.insert(event.t.escapeHTML());
div.insert(span);
Expand Down

0 comments on commit 778e4ee

Please sign in to comment.