witten
/
luminotes
Archived
1
0
Fork 0

Wording change.

This commit is contained in:
Dan Helfman 2008-07-11 17:12:52 -07:00
parent 8271f82734
commit 1940929090
2 changed files with 5 additions and 1 deletions

3
NEWS
View File

@ -1,3 +1,6 @@
1.4.13: July 11, 2008:
* New "revert" button to roll back a note's contents to an earlier revision.
1.4.12: July 7, 2008:
* Fixed a bug in which tab/shift-tab for indending/outdenting nested lists
no longer worked. Also made it work in IE as well (which it never has).

View File

@ -724,7 +724,7 @@ Wiki.prototype.create_editor = function ( id, note_text, deleted_from_id, revisi
'<input type="hidden" name="notebook_id" value="' + this.notebook_id + '">' +
'<input type="hidden" name="note_id" value="' + note_id + '">' +
'<input type="hidden" name="revision" value="' + revision + '">' +
'<input type="submit" class="button" value="revert to this revision" title="Return to this earlier version of the note.">' +
'<input type="submit" class="button" value="revert to this revision" title="Roll back to this earlier version of the note.">' +
'</form>' + note_text;
}
@ -1570,6 +1570,7 @@ Wiki.prototype.submit_form = function ( form ) {
if ( result.new_revision ) {
editor.document.body.innerHTML = result.contents;
editor.resize();
editor.scrape_title();
}
signal( self, "note_saved", editor );