added missing brackets

pull/210/head
Justin Richer 2012-09-13 10:26:02 -04:00
parent fe3e890bb3
commit ece1b56095
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@
render:function () {
this.$el.html(this.template(this.model.toJSON()));
if (this.model.get('item').length > 27)
if (this.model.get('item').length > 27) {
this.$el.tooltip({title:this.model.get('item')});
}
return this;
}
}),