Skip to content
Snippets Groups Projects
Commit bd0e7faf authored by Andreas Gohr's avatar Andreas Gohr
Browse files

javascript fix to mak sumarry checking use addEvent

darcs-hash:20060512073949-7ad00-64c25a5f74939cd4ca17e5928d77f0951c67b3ac.gz
parent e8a6bae4
No related branches found
No related tags found
No related merge requests found
......@@ -402,8 +402,8 @@ function initChangeCheck(msg){
};
edit_text.onkeyup = summaryCheck;
var summary = document.getElementById('edit__summary');
summary.onchange = summaryCheck;
summary.onkeyup = summaryCheck;
addEvent(summary, 'change', summaryCheck);
addEvent(summary, 'keyup', summaryCheck);
// set focus
edit_text.focus();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment