Vulcan/client/main.js
2014-12-30 18:18:00 +09:00

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();