Configure the new TinyMCE to have almost the same buttons as the old one.
Configure the new TinyMCE to have almost the same buttons as the old one.

File last commit:

c1e4c31f199d
3cf3f8fd35f8
Show More
rants.js
9 lines | 230 B | application/javascript | JavascriptLexer
Add most necessary files for admin interface.
r1 function new_rant_attachment()
{
var list = document.getElementById('rant_attachment_list');
var elt = document.createElement('li');
elt.innerHTML = '<input type="file" name="rant_attachment[]" />';
list.appendChild(elt);
}