Commit ce623bcf by Don Mitchell

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

undefined on the content passed in & whole widget is disabled in ie8.
parent 7f4bb63d
......@@ -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...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment