Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
addToolTip: function() {
/* istanbul ignore next */
if (this.get('controller.isAllServicesInstalled')) {
App.tooltip($('.add-service-button a'), {title: Em.I18n.t('services.nothingToAdd')});
}
}.observes('controller.isAllServicesInstalled')
});
init: function() {
this._super();
App.tooltip($('body'), {
selector: '[rel="tooltip"]',
template: '<div class="tooltip jobs-tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
placement: 'bottom'
});
},
didInsertElement: function() {
this._super();
App.tooltip(this.$('[rel="tooltip"]'));
},
didInsertElement: function () {
var self = this;
App.tooltip(this.$('.corner-icon > .glyphicon-save'), {
title: Em.I18n.t('common.export')
});
},
didInsertElement: function () {
App.tooltip(this.$("[rel='ZoomInTooltip']"), {
placement: 'left',
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner graph-tooltip"></div></div>'
});
},