kibana-with-account
Version:
kibana-with-account is develop based kibana project
18 lines (13 loc) • 479 B
JavaScript
import UiModules from 'ui/modules';
import chromeNavControlsRegistry from 'ui/registry/chrome_nav_controls';
import toggleHtml from './toggle.html';
// TODO: the chrome-context directive is currently responsible for several variables
// on scope used by this template. We need to get rid of that directive and move that
// logic here
chromeNavControlsRegistry.register(function () {
return {
name: 'timepicker toggle',
order: 100,
template: toggleHtml
};
});