How to use the app.tooltip function in app

To help you get started, we’ve selected a few app examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github apache / ambari / ambari-web / app / views / main / service.js View on Github external
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')
});
github apache / ambari / ambari-web / app / views / main / jobs_view.js View on Github external
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'
    });
  },
github apache / ambari / ambari-web / app / views / common / form / manage_credentials_form_view.js View on Github external
didInsertElement: function() {
    this._super();
    App.tooltip(this.$('[rel="tooltip"]'));
  },
github apache / ambari / ambari-web / app / views / main / dashboard / widgets / cluster_metrics_widget.js View on Github external
didInsertElement: function () {
    var self = this;
    App.tooltip(this.$('.corner-icon > .glyphicon-save'), {
      title: Em.I18n.t('common.export')
    });
  },
github apache / ambari / ambari-web / app / views / main / dashboard / widget.js View on Github external
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>'
    });
  },

app

mirco web app framework

Unknown
Latest version published 13 years ago

Package Health Score

30 / 100
Full package analysis