48:a09a4fec2716
Anton Shestakov <engored@ya.ru>, Sun, 05 Apr 2015 03:48:16 +0800
Missing semicolon

next change 140:2e975ca4302e
previous change 11:84505e73e061

static/js/framework/views/base.js

Permissions: -rw-r--r--

Other formats: Feeds:
var CollectionView = Backbone.View.extend({
appendItem: function() {},
updateItem: function() {},
removeItem: function() {},
clear: function() {},
repopulate: function() {
this.clear();
this.collection.each(this.appendItem, this);
},
bindCollection: function() {
this.repopulate();
this.collection
.on('add', this.appendItem, this)
.on('change', this.updateItem, this)
.on('remove', this.removeItem, this)
.on('reset', this.repopulate, this);
},
unbindCollection: function() {
this.collection.off(null, null, this);
},
compileTemplates: function(templates) {
this.templates = {};
_.each(templates, function(template, name) {
this.templates[name] = _.template(template);
}, this);
}
});
var Displayer = Backbone.View.extend({
render: function(text) {
this.$el.text(text);
return this;
}
});
var CollectionCounterView = CollectionView.extend({
initialize: function(options) {
if ('plurals' in options) {
this.makeTitle = function(n) {
return n + ' ' + options.plurals[n == 1 ? 0 : 1];
};
}
this.bindCollection();
},
appendItem: function() {
this.repopulate();
},
removeItem: function() {
this.repopulate();
},
repopulate: function() {
this.$el.html(this.makeTitle(this.collection.models.length));
},
makeTitle: function(n) {
return n;
}
});