Skip to content

Commit

Permalink
Issue qunitjs#365: fix module picker for oldIE
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Dec 10, 2012
1 parent 22bfce7 commit 54aa4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qunit/qunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ QUnit.load = function() {
moduleFilter = document.createElement( 'span' );
moduleFilter.setAttribute( 'id', 'qunit-modulefilter-container' );
moduleFilter.innerHTML = moduleFilterHtml;
addEvent( moduleFilter, "change", function() {
addEvent( moduleFilter.lastChild, "change", function() {
var selectBox = moduleFilter.getElementsByTagName("select")[0],
selectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);

Expand Down

0 comments on commit 54aa4b8

Please # to comment.