You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiled template is returning undefined, but if I run the source template, it works fine:
`define(['jquery',
'hgn!../../../shared/templates/components/storelist.partial.html',
],
function list($listTpl) {
return {
updateView: function updateView(data) {
var markup;
var fixedData = self.massageData(data);
navigation.storeData = data;
console.log(listTpl);
console.log(listTpl.template);
The compiled template is returning undefined, but if I run the source template, it works fine:
`define(['jquery',
'hgn!../../../shared/templates/components/storelist.partial.html',
],
function list($listTpl) {
return {
updateView: function updateView(data) {
var markup;
var fixedData = self.massageData(data);
navigation.storeData = data;
console.log(listTpl);
console.log(listTpl.template);
});
`
The only thing I can see is the text property of the template is returning empty in the compiled version.
The text was updated successfully, but these errors were encountered: