##// END OF EJS Templates
fixed in svn browser: revisions were ignored when no author was found...
fixed in svn browser: revisions were ignored when no author was found git-svn-id: http://redmine.rubyforge.org/svn/trunk@109 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r65:96f83cc8f0f0
r106:ad02b3fb7bf9
Show More
application.js
19 lines | 553 B | application/javascript | JavascriptLexer
Jean-Philippe Lang
Initial commit...
r2 function checkAll (id, checked) {
var el = document.getElementById(id);
for (var i = 0; i < el.elements.length; i++) {
if (el.elements[i].disabled==false) {
el.elements[i].checked = checked;
}
}
Jean-Philippe Lang
multiple file upload...
r38 }
function addFileField() {
var f = document.createElement("input");
f.type = "file";
f.name = "attachments[]";
f.size = 30;
p = document.getElementById("attachments_p");
p.appendChild(document.createElement("br"));
Jean-Philippe Lang
* new report: project activity...
r42 p.appendChild(document.createElement("br"));
Jean-Philippe Lang
multiple file upload...
r38 p.appendChild(f);
Jean-Philippe Lang
Initial commit...
r2 }