Vulcan/packages/telescope-lib/lib/custom_template_prefix.js
Gary Tierney 13e988dfec Add custom template prefix on client + server
Seperate template replacement from adding the initial "custom" prefix,
so that server-side templates (namely e-mails) can also have overrides.
2015-10-05 23:15:26 +01:00

7 lines
166 B
JavaScript

Meteor.startup(function () {
// "custom_" is always loaded last, so it takes priority over every other prefix
Telescope.config.addCustomPrefix("custom_");
});