Anton Shestakov <av6@dwimlabs.net>, Fri, 27 May 2016 18:37:01 +0800
docs: add release dates
static/js/framework/views/workspaces.js
Permissions: -rw-r--r--
var WorkspaceTabsView = CollectionView.extend({ initialize: function(options) { this.compileTemplates(options.templates); renderItem: function(workspace) { return $(this.templates.tab(workspace.toJSON())); appendItem: function(workspace) { var $item = this.renderItem(workspace); activate: function(workspace) { this.$el.find('[data-workspace]').removeClass('active'); this.$el.find('[data-workspace="' + workspace + '"]').addClass('active');