##// END OF EJS Templates
fix initial collapsed state on load...
Min RK -
Show More
@@ -908,9 +908,10 b' define(['
908 this.append_output(outputs[i]);
908 this.append_output(outputs[i]);
909 }
909 }
910 if (metadata.collapsed !== undefined) {
910 if (metadata.collapsed !== undefined) {
911 this.collapsed = metadata.collapsed;
912 if (metadata.collapsed) {
911 if (metadata.collapsed) {
913 this.collapse();
912 this.collapse();
913 } else {
914 this.expand();
914 }
915 }
915 }
916 }
916 if (metadata.scrolled !== undefined) {
917 if (metadata.scrolled !== undefined) {
General Comments 0
You need to be logged in to leave comments. Login now