Fixed: History taking a long time to change pages

Fixed: Series search results will show the year in italics if its not part of the title
This commit is contained in:
Mark McDowall
2013-10-29 17:30:36 -07:00
parent 7b6549fcd3
commit 70127125c2
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -68,6 +68,6 @@ define(
return this.title;
}
return '{0} ({1})'.format(this.title, this.year);
return new Handlebars.SafeString('{0} <em>({1})</em>'.format(this.title, this.year));
});
});