Use .js instead of .jst

Fix #5934
This commit is contained in:
Peter Jaszkowiak
2017-09-23 12:51:20 -06:00
parent f989988178
commit dc87d7fc0f
8 changed files with 12 additions and 12 deletions

View File

@@ -330,7 +330,7 @@ $(document).ready(function () {
};
ajaxify.loadTemplate = function (template, callback) {
require([config.relative_path + '/assets/templates/' + template + '.jst'], callback, function (err) {
require([config.relative_path + '/assets/templates/' + template + '.js'], callback, function (err) {
console.error('Unable to load template: ' + template);
throw err;
});