revert to using getElementsByClassName in .dialog b/c jQuery was

undefined on the content passed in & whole widget is disabled in ie8.
This commit is contained in:
Don Mitchell
2012-11-06 17:05:44 -05:00
parent 7f4bb63dff
commit ce623bcf17

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...