deprecated loadTemplates client-side as well

v1.18.x
psychobunny 11 years ago
parent 68d526b762
commit 444956d517

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

Loading…
Cancel
Save