Making the checkboxes work fine on IE. onchange doesnt work very well with checkboxes there. The target is not set too.

Original author: Fabio M. Costa <fabiomcosta@gmail.com>
This commit is contained in:
Christian Williams 2010-10-05 13:27:50 -07:00
parent 8ecfd26325
commit 377703745f
1 changed files with 4 additions and 4 deletions

View File

@ -70,16 +70,16 @@ jasmine.TrivialReporter.prototype.reportRunnerStarting = function(runner) {
this.startedAt = new Date();
var self = this;
showPassed.onchange = function(evt) {
if (evt.target.checked) {
showPassed.onclick = function(evt) {
if (showPassed.checked) {
self.outerDiv.className += ' show-passed';
} else {
self.outerDiv.className = self.outerDiv.className.replace(/ show-passed/, '');
}
};
showSkipped.onchange = function(evt) {
if (evt.target.checked) {
showSkipped.onclick = function(evt) {
if (showSkipped.checked) {
self.outerDiv.className += ' show-skipped';
} else {
self.outerDiv.className = self.outerDiv.className.replace(/ show-skipped/, '');