deprecated loadTemplates client-side as well

This commit is contained in:
psychobunny
2014-03-04 17:16:12 -05:00
parent 68d526b762
commit 444956d517

View File

@@ -46,14 +46,6 @@
return template;
};
function loadTemplates(templatesToLoad, customTemplateDir) {
$.when($.getJSON(RELATIVE_PATH + '/templates/config.json'), $.getJSON(RELATIVE_PATH + '/api/get_templates_listing')).done(function (config_data, templates_data) {
config = config_data[0];
available_templates = templates_data[0];
templates.ready();
});
}
templates.render = function(filename, options, fn) {
if ('function' === typeof options) {
fn = options, options = false;
@@ -86,7 +78,6 @@
};
templates.preload_template = function(tpl_name, callback) {
if(templates[tpl_name]) {
return callback();
}