witten
/
luminotes
Archived
1
0
Fork 0

Messages/errors with no given positioning are now by default positioned at the top of the notes (instead of the bottom).

This commit is contained in:
Dan Helfman 2009-01-26 14:22:50 -08:00
parent 4ac6eb6322
commit d22e521b74
1 changed files with 2 additions and 2 deletions

View File

@ -2547,7 +2547,7 @@ Wiki.prototype.display_message = function ( text, nodes, position_after ) {
else if ( this.focused_editor )
insertSiblingNodesAfter( this.focused_editor.holder, div )
else
appendChildNodes( "notes", div );
insertSiblingNodesAfter( "notes_top", div );
this.scroll_to( div );
@ -2580,7 +2580,7 @@ Wiki.prototype.display_error = function ( text, nodes, position_after ) {
else if ( this.focused_editor )
insertSiblingNodesAfter( this.focused_editor.holder, div )
else
appendChildNodes( "notes", div );
insertSiblingNodesAfter( "notes_top", div );
this.scroll_to( div );