+ The dev menu isn't appearing. Added a try/catch to see if that would illuminate anything. It did not. Will dig in more after applying all the patches.

This commit is contained in:
Ian Gilman 2010-07-06 14:53:40 -07:00
parent 0cb80921f3
commit 047e6bcb2c

View File

@ -916,6 +916,7 @@ UIClass.prototype = {
// ----------
addDevMenu: function() {
try {
var self = this;
var $select = iQ('<select>')
@ -977,6 +978,9 @@ UIClass.prototype = {
.appendTo($select)
.get(0);
}
} catch(e) {
Utils.log(e);
}
},
// -----------