Merge pull request #5335 from spalger/fix/chromeSetVisible

[chrome] let users call setVisible() before angular bootstrap
This commit is contained in:
Lukas Olson 2015-11-05 13:10:40 -07:00
commit 5e9e5c6bef
3 changed files with 6 additions and 3 deletions

View file

@ -45,7 +45,7 @@ module.exports = function (chrome, internals) {
controller: function ($scope, $rootScope, $location, $http) {
// are we showing the embedded version of the chrome?
chrome.setVisible(!Boolean($location.search().embed));
internals.setVisibleDefault(!$location.search().embed);
// listen for route changes, propogate to tabs
var onRouteChange = function () {

View file

@ -10,6 +10,9 @@ module.exports = function (chrome, internals) {
* determines if the Kibana chrome should be displayed
*/
var def = true;
internals.setVisibleDefault = (_def) => def = Boolean(_def);
/**
* @param {boolean} display - should the chrome be displayed
* @return {chrome}
@ -23,7 +26,7 @@ module.exports = function (chrome, internals) {
* @return {boolean} - display state of the chrome
*/
chrome.getVisible = function () {
if (_.isUndefined(internals.visible)) return true;
if (_.isUndefined(internals.visible)) return def;
return internals.visible;
};
};

View file

@ -2,7 +2,7 @@
<div class="content" chrome-context >
<nav
ng-style="::{ background: chrome.getNavBackground() }"
ng-class="::{ show: chrome.getVisible() }"
ng-class="{ show: chrome.getVisible() }"
class="hide navbar navbar-inverse navbar-static-top">
<!-- Mobile navbar -->