Branch: refs/heads/rc
Home: https://github.com/jenkinsci/jenkins
Commit: 4535b18333ff8fea1c7394550b070f539ac7efef
https://github.com/jenkinsci/jenkins/commit/4535b18333ff8fea1c7394550b070f539ac7efef
Author: OHTAKE Tomohiro <[email protected]>
Date: 2012-03-05 (Mon, 05 Mar 2012)
Changed paths:
M changelog.html
M war/src/main/webapp/scripts/hudson-behavior.js
Log Message:
-----------
IE compatibility
$(e).next() may return undefined.
If 2nd argument of insertBefore is undefined,
IE9 complains "SCRIPT87: Invalid argument".
To insert newChild at the end, 2nd argument should be null.
http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-952280727