witten
/
luminotes
Archived
1
0
Fork 0

When printing the whole notebook, the current note is now saved first so its changes are included in the printing.

This commit is contained in:
Dan Helfman 2009-03-02 21:48:58 -08:00
parent 024713fc4e
commit b62e1244ef
1 changed files with 7 additions and 0 deletions

View File

@ -424,6 +424,13 @@ Wiki.prototype.populate = function ( startup_notes, current_notes, note_read_wri
} );
}
var print_notebook_link = getElement( "print_notebook_link" );
if ( print_notebook_link ) {
connect( print_notebook_link, "onclick", function ( event ) {
self.editor_focused( null, true );
} );
}
var settings_link = getElement( "settings_link" );
if ( settings_link ) {
connect( settings_link, "onclick", function ( event ) {