53:b38b370a18bd
Anton Shestakov <engored@ya.ru>, Sun, 05 Apr 2015 04:12:54 +0800
Added tag 0.3.0 for changeset 2852fd02fb79

next change 147:af2c69b87882
previous change 43:d1ff547fa61d

static/js/framework/views/workspaces.js

Permissions: -rw-r--r--

Other formats: Feeds:
var WorkspaceTabsView = CollectionView.extend({
initialize: function(options) {
this.compileTemplates(options.templates);
this.bindCollection();
},
clear: function() {
this.$el.empty();
},
renderItem: function(workspace) {
return $(this.templates.tab(workspace.toJSON()));
},
appendItem: function(workspace) {
var $item = this.renderItem(workspace);
this.$el.append($item);
},
activate: function(workspace) {
this.$el.find('[data-workspace]').removeClass('active');
this.$el.find('[data-workspace="' + workspace + '"]').addClass('active');
}
});