From ea64cc97a27078b5ee848d4dcd9a2ec90f25ec47 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 10 Aug 2007 19:19:47 +0000 Subject: [PATCH] If you undelete a note via undo, now it's indicated in the options pulldown that it's a startup note. --- static/js/Wiki.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/Wiki.js b/static/js/Wiki.js index 16babe9..264d502 100644 --- a/static/js/Wiki.js +++ b/static/js/Wiki.js @@ -499,6 +499,7 @@ Wiki.prototype.undelete_editor_via_undo = function( event, editor ) { } ); } + this.startup_notes[ editor.id ] = true; this.load_editor( "Note not found.", null, editor.id, null ); }