witten
/
luminotes
Archived
1
0
Fork 0

Making IE happy by removing commas.

This commit is contained in:
Dan Helfman 2007-11-17 04:31:19 +00:00
parent cdd971780e
commit f7d2bd4885
1 changed files with 2 additions and 2 deletions

View File

@ -972,7 +972,7 @@ Wiki.prototype.undelete_editor_via_undelete = function( event, note_id, position
Wiki.prototype.undelete_notebook_via_undo = function( event, notebook_id, position_after ) {
this.invoker.invoke( "/notebooks/undelete", "POST", {
"notebook_id": notebook_id,
"notebook_id": notebook_id
} );
event.stop();
@ -1470,7 +1470,7 @@ Wiki.prototype.end_notebook_rename = function () {
Wiki.prototype.delete_notebook = function () {
this.invoker.invoke( "/notebooks/delete", "POST", {
"notebook_id": this.notebook_id,
"notebook_id": this.notebook_id
} );
}