1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 16:36:47 +02:00

Fix JSHint errors

This commit is contained in:
Toby Zerner
2015-01-21 14:29:00 +10:30
parent bc91f61f17
commit df7da9338d
28 changed files with 108 additions and 94 deletions

View File

@@ -8,7 +8,9 @@ var PostResult = Ember.ObjectProxy.extend({
PostResult.reopenClass({
create: function(post) {
if (!post) return null;
if (!post) {
return null;
}
var result = this._super();
result.set('content', post);