Skip to content
Extraits de code Groupes Projets
Valider b7fc774d rédigé par Maxwell Salzberg's avatar Maxwell Salzberg
Parcourir les fichiers

semi-colons; use them

parent ee2fafa3
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Affichage de
avec 22 ajouts et 19 suppressions
package_assets: on
package_assets: always
embed_assets: datauri
compress_assets: on
gzip_assets: off
......@@ -43,14 +43,19 @@ javascripts:
- public/javascripts/app/helpers/*
- public/javascripts/app/router.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/pages/*
- public/javascripts/app/collections/*
- public/javascripts/app/views/stream_object_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/diaspora.js
- public/javascripts/helpers/*.js
- public/javascripts/pages/*.js
- public/javascripts/widgets/*.js
- public/javascripts/diaspora.js
- public/javascripts/helpers/*.js
......
app.models.Like = Backbone.Model.extend({ })
app.models.Like = Backbone.Model.extend({ });
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){
this.posts.add(models)
}
})
});
......@@ -99,4 +99,4 @@ app.pages.PostViewer = app.views.Base.extend({
this.interactionsView.hidePane();
}
})
});
......@@ -62,4 +62,4 @@ app.views.Base = Backbone.View.extend({
removeTooltips : function() {
$(".twipsy").remove();
}
})
});
......@@ -29,7 +29,7 @@ app.views.Content = app.views.StreamObject.extend({
if(!photos || photos.length < 2) { return }
return photos.slice(1,8)
}
})
});
app.views.StatusMessage = app.views.Content.extend({
templateName : "status-message"
......
......@@ -55,4 +55,4 @@ app.views.Feedback = app.views.Base.extend({
return publicPost && app.currentUser.authenticated() && userIsNotAuthor && userIsNotRootAuthor;
}
})
});
......@@ -5,5 +5,4 @@ app.views.PostViewerAuthor = app.views.Base.extend({
templateName: "post-viewer/author"
})
});
\ No newline at end of file
......@@ -37,4 +37,4 @@ app.views.PostViewerFeedback = app.views.Feedback.extend({
return false;
}
})
});
\ No newline at end of file
......@@ -53,4 +53,4 @@ app.views.PostViewerInteractions = app.views.Base.extend({
this.togglePane()
}
}
})
});
\ No newline at end of file
......@@ -27,5 +27,4 @@ app.views.PostViewerNav = app.views.Base.extend({
app.router.navigate(link.attr("href").substring(1), true)
}
})
});
\ No newline at end of file
......@@ -42,4 +42,4 @@ app.views.PostViewerNewComment = app.views.Base.extend({
$(this.scrollableArea).scrollTop($(this.scrollableArea).prop("scrollHeight"))
}
})
});
\ No newline at end of file
......@@ -31,4 +31,4 @@ app.views.PostViewerReactions = app.views.Base.extend({
}).render().el);
}
})
});
\ No newline at end of file
......@@ -26,4 +26,4 @@ app.views.StreamFaces = app.views.Base.extend({
this.render();
}
})
});
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter