mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
15 lines
No EOL
389 B
JavaScript
15 lines
No EOL
389 B
JavaScript
// Session variables
|
|
Session.set('postsLimit', getSetting('postsPerPage', 10));
|
|
|
|
// Sort postModules array position using modulePositions as index
|
|
postModules = _.sortBy(postModules, 'order');
|
|
|
|
postHeading = _.sortBy(postHeading, 'order');
|
|
|
|
postMeta = _.sortBy(postMeta, 'order');
|
|
|
|
Meteor.startup(function () {
|
|
$('#rss-link').attr('title', i18n.t('new_posts'));
|
|
});
|
|
|
|
// AutoForm.debug();
|