1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

Fix the reveal macro in run mode

This commit is contained in:
Jeremy Ruston 2012-07-15 23:06:24 +01:00
parent a149510fa3
commit ca2c790c27

View File

@ -118,7 +118,7 @@ exports.executeMacro = function() {
attributes["class"].push("tw-popup");
break;
}
attributes.style = {display: this.isOpen ? "block" : "none"};
attributes.style = {display: this.isOpen ? (this.isBlock ? "block" : "inline") : "none"};
var child = $tw.Tree.Element(this.isBlock ? "div" : "span",attributes,this.isOpen ? this.content : [],{
events: ["click"],
eventHandler: this
@ -182,7 +182,7 @@ exports.refreshInDom = function(changes) {
}
}
// Set the visibility of the children
this.child.domNode.style.display = this.isOpen ? "block" : "none";
this.child.domNode.style.display = this.isOpen ? (this.isBlock ? "block" : "inline") : "none";
// Position the content if required
this.postRenderInDom();
};