mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
0e9d4e6792
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
29 lines
846 B
JavaScript
29 lines
846 B
JavaScript
// See gh-tabs-manager.js for use
|
|
var TabPane = Ember.Component.extend({
|
|
classNameBindings: ['active'],
|
|
|
|
tabsManager: Ember.computed(function () {
|
|
return this.nearestWithProperty('isTabsManager');
|
|
}),
|
|
|
|
tab: Ember.computed('tabsManager.tabs.[]', 'tabsManager.tabPanes.[]', function () {
|
|
var index = this.get('tabsManager.tabPanes').indexOf(this),
|
|
tabs = this.get('tabsManager.tabs');
|
|
|
|
return tabs && tabs.objectAt(index);
|
|
}),
|
|
|
|
active: Ember.computed.alias('tab.active'),
|
|
|
|
// Register with the tabs manager
|
|
registerWithTabs: function () {
|
|
this.get('tabsManager').registerTabPane(this);
|
|
}.on('didInsertElement'),
|
|
|
|
unregisterWithTabs: function () {
|
|
this.get('tabsManager').unregisterTabPane(this);
|
|
}.on('willDestroyElement')
|
|
});
|
|
|
|
export default TabPane;
|