mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
62 lines
848 B
JavaScript
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
|
|
}
|
|
]);
|