Merge pull request #1022 from MITx/ie8patch

revert to using getElementsByClassName in .dialog b/c jQuery was
This commit is contained in:
Carlos Andrés Rocha
2012-11-06 14:14:07 -08:00

View File

@@ -3723,7 +3723,7 @@ schematic = (function() {
// look for property input fields in the content and give
// them a keypress listener that interprets ENTER as
// clicking OK.
var plist = content.$('.property');
var plist = content.getElementsByClassName('property');
for (var i = plist.length - 1; i >= 0; --i) {
var field = plist[i];
field.dialog = dialog; // help event handler find us...