Commit e82d1710 by Torkel Ödegaard

Dashboard: when opening search or dashboard settings, click the icon again will…

Dashboard: when opening search or dashboard settings, click the icon again will now hide the view, Closes #836
parent a19a2c70
...@@ -51,9 +51,12 @@ function (angular, $) { ...@@ -51,9 +51,12 @@ function (angular, $) {
scope.onAppEvent('hide-dash-editor', hideEditorPane); scope.onAppEvent('hide-dash-editor', hideEditorPane);
scope.onAppEvent('show-dash-editor', function(evt, payload) { scope.onAppEvent('show-dash-editor', function(evt, payload) {
hideEditorPane(); if (lastEditor === payload.src) {
hideEditorPane();
return;
}
if (lastEditor === payload.src) { return; } hideEditorPane();
scope.exitFullscreen(); scope.exitFullscreen();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment