semi-colons; use them

This commit is contained in:
Maxwell Salzberg 2012-03-07 16:24:02 -08:00
parent ee2fafa31d
commit b7fc774d06
15 changed files with 22 additions and 19 deletions

View file

@ -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
@ -43,14 +43,19 @@ javascripts:
- public/javascripts/app/helpers/* - public/javascripts/app/helpers/*
- public/javascripts/app/router.js - public/javascripts/app/router.js
- public/javascripts/app/views.js - public/javascripts/app/views.js
- public/javascripts/app/models/post.js - public/javascripts/app/models/post.js
- public/javascripts/app/models/* - public/javascripts/app/models/*
- public/javascripts/app/pages/* - public/javascripts/app/pages/*
- public/javascripts/app/collections/* - public/javascripts/app/collections/*
- public/javascripts/app/views/stream_object_view.js - public/javascripts/app/views/stream_object_view.js
- public/javascripts/app/views/content_view.js - public/javascripts/app/views/content_view.js
- public/javascripts/app/views/*.js - public/javascripts/app/views/*.js
- public/javascripts/app/views/**/*.js - public/javascripts/app/views/**/*.js
- public/javascripts/diaspora.js
- public/javascripts/helpers/*.js
- public/javascripts/pages/*.js
- public/javascripts/widgets/*.js
- public/javascripts/diaspora.js - public/javascripts/diaspora.js
- public/javascripts/helpers/*.js - public/javascripts/helpers/*.js

View file

@ -1 +1 @@
app.models.Like = Backbone.Model.extend({ }) app.models.Like = Backbone.Model.extend({ });

View file

@ -1 +1 @@
app.models.Participation = Backbone.Model.extend({ }) app.models.Participation = Backbone.Model.extend({ });

View file

@ -64,4 +64,4 @@ app.models.Stream = Backbone.Collection.extend({
add : function(models){ add : function(models){
this.posts.add(models) this.posts.add(models)
} }
}) });

View file

@ -99,4 +99,4 @@ app.pages.PostViewer = app.views.Base.extend({
this.interactionsView.hidePane(); this.interactionsView.hidePane();
} }
}) });

View file

@ -62,4 +62,4 @@ app.views.Base = Backbone.View.extend({
removeTooltips : function() { removeTooltips : function() {
$(".twipsy").remove(); $(".twipsy").remove();
} }
}) });

View file

@ -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"

View file

@ -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;
} }
}) });

View file

@ -5,5 +5,4 @@ app.views.PostViewerAuthor = app.views.Base.extend({
templateName: "post-viewer/author" templateName: "post-viewer/author"
}) });

View file

@ -37,4 +37,4 @@ app.views.PostViewerFeedback = app.views.Feedback.extend({
return false; return false;
} }
}) });

View file

@ -53,4 +53,4 @@ app.views.PostViewerInteractions = app.views.Base.extend({
this.togglePane() this.togglePane()
} }
} }
}) });

View file

@ -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)
} }
}) });

View file

@ -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"))
} }
}) });

View file

@ -31,4 +31,4 @@ app.views.PostViewerReactions = app.views.Base.extend({
}).render().el); }).render().el);
} }
}) });

View file

@ -26,4 +26,4 @@ app.views.StreamFaces = app.views.Base.extend({
this.render(); this.render();
} }
}) });