Anton Shestakov <av6@dwimlabs.net>, Fri, 29 Jul 2016 19:22:46 +0800
provision: role vars are now legit super evil, confirmed by Ansible 2.1.0.0
They are so extremely high-priority now that they cannot be redefined in a
playbook. At least defaults should work as expected?
static/js/framework/views/base.js
Permissions: -rw-r--r--
var CollectionView = Backbone.View.extend({ appendItem: function() {}, updateItem: function() {}, removeItem: function() {}, this.collection.each(this.appendItem, this); bindCollection: function() { .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) { _.each(templates, function(template, name) { this.templates[name] = _.template(template); var Displayer = Backbone.View.extend({ var CollectionCounterView = CollectionView.extend({ initialize: function(options) { if ('plurals' in options) { this.makeTitle = function(n) { return n + ' ' + options.plurals[n == 1 ? 0 : 1]; this.$el.html(this.makeTitle(this.collection.models.length));