witten
/
luminotes
Archived
1
0
Fork 0

Fix for note summary sometimes showing up with literal HTML tags.

This commit is contained in:
Dan Helfman 2007-12-30 21:55:25 +00:00
parent 45657094f4
commit 405081e27a
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ Wiki.prototype.resolve_link = function ( note_title, link, callback ) {
if ( link )
link.href = "/notebooks/" + this.notebook_id + "?note_id=" + editor.id;
if ( callback )
callback( editor.contents() );
callback( editor.summarize() );
return;
}