From d5345304ccf89a1c03dbf717b617186babd49d09 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 11 Aug 2007 21:34:56 +0000 Subject: [PATCH] Forgot to actually set the notebook_id within Editor. --- static/js/Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/Editor.js b/static/js/Editor.js index 1846526..31519aa 100644 --- a/static/js/Editor.js +++ b/static/js/Editor.js @@ -2,7 +2,7 @@ note_titles = {} // map from note title to the open editor for that note function Editor( id, notebook_id, note_text, deleted_from, revisions_list, insert_after_iframe_id, read_write, startup, highlight, focus ) { this.id = id; - this.notebook_id; + this.notebook_id = notebook_id; this.initial_text = note_text; this.deleted_from = deleted_from || null; this.revisions_list = revisions_list;