jupyter-js-notebook
Advanced tools
Comparing version 0.5.8 to 0.5.9
@@ -5,2 +5,4 @@ var cells_1 = require('../cells'); | ||
var phosphor_properties_1 = require('phosphor-properties'); | ||
var editor_1 = require('../editor'); | ||
var input_area_1 = require('../input-area'); | ||
/** | ||
@@ -170,3 +172,6 @@ * The interactivity modes for a notebook. | ||
NotebookModel.prototype.createCodeCell = function (source) { | ||
var input = new input_area_1.InputAreaModel(); | ||
input.textEditor = new editor_1.EditorModel({ lineNumbers: false }); | ||
var cell = new cells_1.CodeCellModel(); | ||
cell.input = input; | ||
return cell; | ||
@@ -178,3 +183,6 @@ }; | ||
NotebookModel.prototype.createMarkdownCell = function (source) { | ||
var input = new input_area_1.InputAreaModel(); | ||
input.textEditor = new editor_1.EditorModel({ lineNumbers: false }); | ||
var cell = new cells_1.MarkdownCellModel(); | ||
cell.input = input; | ||
return cell; | ||
@@ -181,0 +189,0 @@ }; |
{ | ||
"name": "jupyter-js-notebook", | ||
"version": "0.5.8", | ||
"version": "0.5.9", | ||
"description": "Notebook widget for Jupyter", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
113258
3507