We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667d64a commit c8a09ffCopy full SHA for c8a09ff
1 file changed
gocam_view/templates/gocam_view/index.html
@@ -788,6 +788,7 @@
788
const searchBoxDiv = document.getElementById('search-box');
789
790
window.showCyPanel = function() {
791
+ panelStyle.display = 'block';
792
showPanelButton.style.display = 'none';
793
hidePanelButton.style.display = 'inline-block';
794
panelContent.style.display = 'block';
@@ -802,6 +803,7 @@
802
803
};
804
805
window.hideCyPanel = function() {
806
+ panelStyle.display = 'none';
807
showPanelButton.style.display = 'inline-block';
808
hidePanelButton.style.display = 'none';
809
panelContent.style.display = 'none';
0 commit comments