5 ms·
I'd like to nominate private subviews as a pattern. (function(){ var myPrivateView = Backbone.View.extend({...}); app.views.Foo = Backbone.
by 75c84fb8 15y ago
I'd like to nominate private subviews as a pattern.
(function(){
var myPrivateView = Backbone.View.extend({...});
app.views.Foo = Backbone.View.extend({
/* use myPrivateView somewhere in here */
});
})();