includes/clientside/static/editor.js
changeset 397 06415d243d09
parent 387 92664d2efab8
child 399 a3a9e463c62f
--- a/includes/clientside/static/editor.js	Sat Feb 02 22:32:09 2008 -0500
+++ b/includes/clientside/static/editor.js	Sat Feb 02 22:44:05 2008 -0500
@@ -109,6 +109,9 @@
   // BUILD EDITOR
   //
   
+  var heading = document.createElement('h3');
+  heading.appendChild(document.createTextNode($lang.get('editor_msg_editor_heading')));
+  
   // Plaintext/wikitext toggler
   // Only build the editor if using TinyMCE is allowed. THIS IS WEAK
   // AND CANNOT BE MADE ANY STRONGER.
@@ -369,6 +372,7 @@
   }
   
   // Put it all together...
+  form.appendChild(heading);
   if ( allow_wysiwyg )
     form.appendChild(toggler);
   form.appendChild(preview_anchor);