All Downloads are FREE. Search and download functionalities are using the official Maven repository.

app.directives.tip.js Maven / Gradle / Ivy

The newest version!
define([
  'angular',
  'kbn'
],
function (angular, kbn) {
  'use strict';

  angular
    .module('kibana.directives')
    .directive('tip', function($compile) {
      return {
        restrict: 'E',
        link: function(scope, elem, attrs) {
          var _t = '';
          elem.replaceWith($compile(angular.element(_t))(scope));
        }
      };
    });
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy