witten
/
luminotes
Archived
1
0
Fork 0

Fix forum bylines not showing up.

This commit is contained in:
Dan Helfman 2009-01-26 12:34:33 -08:00
parent fb64838d48
commit c1249fd0dc
1 changed files with 3 additions and 0 deletions

View File

@ -100,6 +100,9 @@ Editor.prototype.create_div = function ( position_after ) {
this.holder = getElement( "note_holder_" + this.id );
this.connect_note_controls( true );
this.div = static_note_div;
static_contents = getFirstElementByTagAndClassName( "span", "static_note_contents", this.div );
if ( static_contents && static_contents.innerHTML != this.initial_text )
static_contents.innerHTML = this.initial_text;
this.scrape_title();
this.focus_default_text_field();
this.connect_handlers();