mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Hide Node info section when displaying changelog
This commit is contained in:
parent
ede940a398
commit
ea929b00e3
@ -31,7 +31,6 @@ RED.sidebar.info = (function() {
|
||||
var nodeSection;
|
||||
var infoSection;
|
||||
var tipBox;
|
||||
var tipContainer;
|
||||
|
||||
var expandedSections = {
|
||||
"property": false
|
||||
@ -61,7 +60,7 @@ RED.sidebar.info = (function() {
|
||||
infoSection.content.css("padding","6px");
|
||||
infoSection.container.css("border-bottom","none");
|
||||
|
||||
tipContainer = $('<div class="node-info-tips"></div>').appendTo(content);
|
||||
var tipContainer = $('<div class="node-info-tips"></div>').appendTo(content);
|
||||
tipBox = $('<div class="node-info-tip"></div>').appendTo(tipContainer);
|
||||
var tipButtons = $('<div class="node-info-tips-buttons"></div>').appendTo(tipContainer);
|
||||
|
||||
@ -306,6 +305,7 @@ RED.sidebar.info = (function() {
|
||||
function set(html) {
|
||||
// tips.stop();
|
||||
sections.show();
|
||||
nodeSection.container.hide();
|
||||
$(infoSection.content).html(html);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user