##// END OF EJS Templates
Move collapsed and autoscroll to metadata
Jessica B. Hamrick -
Show More
@@ -167,7 +167,19 b''
167 "description": "Cell-level metadata.",
167 "description": "Cell-level metadata.",
168 "type": "object",
168 "type": "object",
169 "required": true,
169 "required": true,
170 "additionalProperties": true
170 "additionalProperties": true,
171 "properties": {
172 "collapsed": {
173 "description": "Whether the cell is collapsed/expanded.",
174 "type": "boolean",
175 "required": true
176 },
177 "autoscroll": {
178 "description": "Whether the cell's output should autoscroll.",
179 "type": "boolean",
180 "required": true
181 }
182 }
171 },
183 },
172 "source": {
184 "source": {
173 "description": "Contents of the cell, represented as an array of lines.",
185 "description": "Contents of the cell, represented as an array of lines.",
@@ -188,16 +200,6 b''
188 ]
200 ]
189 }
201 }
190 },
202 },
191 "collapsed": {
192 "description": "Whether the cell is collapsed/expanded.",
193 "type": "boolean",
194 "required": true
195 },
196 "autoscroll": {
197 "description": "Whether the cell's output should autoscroll.",
198 "type": "boolean",
199 "required": true
200 },
201 "prompt_number": {
203 "prompt_number": {
202 "description": "The code cell's prompt number. Will be null if the cell has not been run.",
204 "description": "The code cell's prompt number. Will be null if the cell has not been run.",
203 "type": ["integer", "null"],
205 "type": ["integer", "null"],
General Comments 0
You need to be logged in to leave comments. Login now