Using regex match instead of endsWith for better browser compatibility

This commit is contained in:
Mark McDowall 2013-09-11 08:13:41 -07:00
parent e10a5ca213
commit 94f64567c6
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ define(
});
Handlebars.registerHelper('titleWithYear', function () {
if (this.title.endsWith(' ({0})'.format(this.year))) {
if (this.title.match(/\s\(\d{4}\)$/)) {
return this.title;
}