witten
/
luminotes
Archived
1
0
Fork 0

Forgot to actually set the notebook_id within Editor.

This commit is contained in:
Dan Helfman 2007-08-11 21:34:56 +00:00
parent dbbc93a830
commit d5345304cc
1 changed files with 1 additions and 1 deletions

View File

@ -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;