Vulcan/packages/telescope-posts/lib/modules.js
2015-04-24 09:48:36 +09:00

62 lines
848 B
JavaScript

Telescope.modules.register("postListTop", {
template: 'postViewsNav',
order: 99
});
Telescope.modules.register("postComponents", [
{
template: 'postRank',
order: 1
},
{
template: 'postUpvote',
order: 10
},
{
template: 'postContent',
order: 20
},
{
template: 'postAvatars',
order: 30
},
{
template: 'postDiscuss',
order: 40
},
{
template: 'postActions',
order: 50
}
]);
Telescope.modules.register("postHeading", [
{
template: 'postTitle',
order: 10
},
{
template: 'postDomain',
order: 20
}
]);
Telescope.modules.register("postMeta", [
{
template: 'postAuthor',
order: 10
},
{
template: 'postInfo',
order: 20
},
{
template: 'postCommentsLink',
order: 30
},
{
template: 'postAdmin',
order: 50
}
]);