Use NULL constant instead of string.
Use NULL constant instead of string.

File last commit:

c1e4c31f199d
ebfe51f4958e
Show More
rants.js
9 lines | 230 B | application/javascript | JavascriptLexer
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);
}