semi-colons; use them
This commit is contained in:
parent
ee2fafa31d
commit
b7fc774d06
15 changed files with 22 additions and 19 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
package_assets: on
|
package_assets: always
|
||||||
embed_assets: datauri
|
embed_assets: datauri
|
||||||
compress_assets: on
|
compress_assets: on
|
||||||
gzip_assets: off
|
gzip_assets: off
|
||||||
|
|
@ -57,6 +57,11 @@ javascripts:
|
||||||
- public/javascripts/pages/*.js
|
- public/javascripts/pages/*.js
|
||||||
- public/javascripts/widgets/*.js
|
- public/javascripts/widgets/*.js
|
||||||
|
|
||||||
|
- public/javascripts/diaspora.js
|
||||||
|
- public/javascripts/helpers/*.js
|
||||||
|
- public/javascripts/pages/*.js
|
||||||
|
- public/javascripts/widgets/*.js
|
||||||
|
|
||||||
- public/javascripts/view.js
|
- public/javascripts/view.js
|
||||||
- public/javascripts/aspects-dropdown.js
|
- public/javascripts/aspects-dropdown.js
|
||||||
- public/javascripts/contact-edit.js
|
- public/javascripts/contact-edit.js
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
app.models.Like = Backbone.Model.extend({ })
|
app.models.Like = Backbone.Model.extend({ });
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
app.models.Participation = Backbone.Model.extend({ })
|
app.models.Participation = Backbone.Model.extend({ });
|
||||||
|
|
|
||||||
|
|
@ -64,4 +64,4 @@ app.models.Stream = Backbone.Collection.extend({
|
||||||
add : function(models){
|
add : function(models){
|
||||||
this.posts.add(models)
|
this.posts.add(models)
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -99,4 +99,4 @@ app.pages.PostViewer = app.views.Base.extend({
|
||||||
this.interactionsView.hidePane();
|
this.interactionsView.hidePane();
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -62,4 +62,4 @@ app.views.Base = Backbone.View.extend({
|
||||||
removeTooltips : function() {
|
removeTooltips : function() {
|
||||||
$(".twipsy").remove();
|
$(".twipsy").remove();
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ app.views.Content = app.views.StreamObject.extend({
|
||||||
if(!photos || photos.length < 2) { return }
|
if(!photos || photos.length < 2) { return }
|
||||||
return photos.slice(1,8)
|
return photos.slice(1,8)
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
app.views.StatusMessage = app.views.Content.extend({
|
app.views.StatusMessage = app.views.Content.extend({
|
||||||
templateName : "status-message"
|
templateName : "status-message"
|
||||||
|
|
|
||||||
|
|
@ -55,4 +55,4 @@ app.views.Feedback = app.views.Base.extend({
|
||||||
|
|
||||||
return publicPost && app.currentUser.authenticated() && userIsNotAuthor && userIsNotRootAuthor;
|
return publicPost && app.currentUser.authenticated() && userIsNotAuthor && userIsNotRootAuthor;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,4 @@ app.views.PostViewerAuthor = app.views.Base.extend({
|
||||||
|
|
||||||
templateName: "post-viewer/author"
|
templateName: "post-viewer/author"
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
||||||
|
|
@ -37,4 +37,4 @@ app.views.PostViewerFeedback = app.views.Feedback.extend({
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
@ -53,4 +53,4 @@ app.views.PostViewerInteractions = app.views.Base.extend({
|
||||||
this.togglePane()
|
this.togglePane()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
@ -27,5 +27,4 @@ app.views.PostViewerNav = app.views.Base.extend({
|
||||||
app.router.navigate(link.attr("href").substring(1), true)
|
app.router.navigate(link.attr("href").substring(1), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
||||||
|
|
@ -42,4 +42,4 @@ app.views.PostViewerNewComment = app.views.Base.extend({
|
||||||
$(this.scrollableArea).scrollTop($(this.scrollableArea).prop("scrollHeight"))
|
$(this.scrollableArea).scrollTop($(this.scrollableArea).prop("scrollHeight"))
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
@ -31,4 +31,4 @@ app.views.PostViewerReactions = app.views.Base.extend({
|
||||||
}).render().el);
|
}).render().el);
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
});
|
||||||
|
|
@ -26,4 +26,4 @@ app.views.StreamFaces = app.views.Base.extend({
|
||||||
|
|
||||||
this.render();
|
this.render();
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
Loading…
Reference in a new issue