Merged r3784 from trunk.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.9-stable@3793 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Eric Davis
2010-06-19 23:03:01 +00:00
parent 44851d079f
commit 14074da8b1
2 changed files with 16 additions and 1 deletions

View File

@@ -207,3 +207,12 @@ Ajax.Responders.register({
}
}
});
function hideOnLoad() {
$$('.hol').each(function(el) {
el.hide();
});
}
Event.observe(window, 'load', hideOnLoad);