Merge pull request #961 from Workpop/trailing-commas

cosmetic remove some trailing commas from telescope-posts
This commit is contained in:
Sacha Greif 2015-05-13 08:39:53 +09:00
commit bd8b3b30b8

View file

@ -72,35 +72,35 @@ Meteor.startup(function () {
* Controller for top view
*/
Posts.controllers.top = Posts.controllers.list.extend({
view: 'top',
view: 'top'
});
/**
* Controller for new view
*/
Posts.controllers.new = Posts.controllers.list.extend({
view: 'new',
view: 'new'
});
/**
* Controller for best view
*/
Posts.controllers.best = Posts.controllers.list.extend({
view: 'best',
view: 'best'
});
/**
* Controller for pending view
*/
Posts.controllers.pending = Posts.controllers.list.extend({
view: 'pending',
view: 'pending'
});
/**
* Controller for scheduled view
*/
Posts.controllers.scheduled = Posts.controllers.list.extend({
view: 'scheduled',
view: 'scheduled'
});
/**