mirror of https://github.com/rancher/ui.git
14 lines
410 B
JavaScript
14 lines
410 B
JavaScript
import Ember from 'ember';
|
|
import Tooltip from 'ui/mixins/tooltip';
|
|
|
|
export default Ember.Component.extend(Tooltip, {
|
|
needs : ['application'],
|
|
model : Ember.computed.oneWay('tooltipService.tooltipOpts.model'),
|
|
display : null,
|
|
|
|
selectPartial: Ember.computed('tooltipService.tooltipOpts.template', function() {
|
|
return this.get('tooltipService.tooltipOpts.template') || 'tooltip-basic';
|
|
})
|
|
|
|
});
|