Don't break new note creation

This commit is contained in:
Dan Stillman 2006-09-08 00:42:46 +00:00
parent bbedd3bd93
commit ea72af8be8

View file

@ -57,7 +57,9 @@ function onUnload()
var NotifyCallback = {
notify: function(){
noteEditor.note = noteEditor.note;
if (noteEditor.note){
noteEditor.note = noteEditor.note;
}
}
}