Closed mulderp closed 11 years ago
I am note sure if this is an issue with CommonJS or Sprockets. I would like to use JST for a template within a widget module:
var LoginView = Backbone.View.extend({ template: JST["templates/login"], initialize: function() { console.log("join"); } });
The JST is not found.
I will try with:
function(template, data) { return HandlebarsTemplates[template](data); };
Have you solved this ? I'm having the same issue. JST cannot be accessed from within Backbone.View.
I am note sure if this is an issue with CommonJS or Sprockets. I would like to use JST for a template within a widget module:
The JST is not found.