witten
/
luminotes
Archived
1
0
Fork 0

Fixed bug that prevented loading notes to compare conflicting versions.

This commit is contained in:
Dan Helfman 2008-01-04 21:43:54 +00:00
parent 5520fe5892
commit 762de24bca
1 changed files with 2 additions and 2 deletions

View File

@ -1106,8 +1106,8 @@ Wiki.prototype.compare_versions = function( event, editor, previous_revision ) {
this.clear_pulldowns();
// display the two revisions for comparison by the user
this.load_editor( editor.title, editor.id, previous_revision, null, editor.iframe );
this.load_editor( editor.title, editor.id, null, null, editor.iframe );
this.load_editor( editor.title, editor.id, previous_revision, null, editor.closed ? null : editor.iframe );
this.load_editor( editor.title, editor.id, null, null, editor.closed ? null : editor.iframe );
}
Wiki.prototype.save_editor = function ( editor, fire_and_forget ) {