@spalger/kibana
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
24 lines (21 loc) • 613 B
JavaScript
define(function (require) {
var module = require('ui/modules').get('kibana');
var _ = require('lodash');
var $ = require('jquery');
module.directive('clickFocus', function () {
return {
scope: {
clickFocus: '='
},
restrict: 'A',
link: function ($scope, $elem) {
function handler() {
var focusElem = $.find('input[name=' + $scope.clickFocus + ']');
if (focusElem[0]) focusElem[0].focus();
}
$elem.bind('click', handler);
$scope.$on('$destroy', _.bindKey($elem, 'unbind', 'click', handler));
}
};
});
});