mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
remove some trailing commas from telescope-posts
This commit is contained in:
parent
0983496203
commit
cc9a098c92
1 changed files with 5 additions and 5 deletions
|
@ -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'
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue