Make the reveal widget hide the div element if it is not open

print-window-tiddler
Jeremy Ruston 2013-10-15 21:06:52 +01:00
rodzic ebcd5177ec
commit 5b4ca67d6e
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -36,6 +36,9 @@ RevealWidget.prototype.render = function(parent,nextSibling) {
if(!domNode.isTiddlyWikiFakeDom && this.type === "popup" && this.isOpen) {
this.positionPopup(domNode);
}
if(!this.isOpen) {
domNode.setAttribute("hidden","true")
}
this.domNodes.push(domNode);
};