Starting work on 1.15.9: keyboard cleanup in progress
This commit is contained in:
parent
271970f42a
commit
df1ec8d39a
145 changed files with 6757 additions and 629 deletions
|
|
@ -127,8 +127,6 @@ function Component(type, parms, constructor)
|
|||
this.bindings = {};
|
||||
this.dbg = null; // by default, no connection to a Debugger
|
||||
|
||||
this.getMachineNum(); // once again, make the function appear used
|
||||
|
||||
Component.add(this);
|
||||
}
|
||||
|
||||
|
|
@ -533,7 +531,7 @@ Component.bindComponentControls = function(component, element, sAppClass)
|
|||
if (parms && parms['binding']) {
|
||||
component.setBinding(sClass, parms['type'], parms['binding'], control);
|
||||
} else {
|
||||
Component.log('Component.bindComponentControls("' + component.toString() + '"): no binding info for ' + parms['type'], "warning");
|
||||
Component.log('Component.bindComponentControls("' + component.toString() + '"): missing binding' + (parms? ' for ' + parms['type'] : ''), "warning");
|
||||
}
|
||||
aClasses = [];
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -753,7 +753,7 @@ web.doPageEvent = function(afn)
|
|||
afn[i]();
|
||||
}
|
||||
} catch(e) {
|
||||
web.notice("An unexpected exception occurred:\n\n" + e.message + "\n\nPlease send this information to Jeff@pcjs.org. Thanks.");
|
||||
web.notice("An unexpected exception occurred:\n\n" + e.message + "\n\nPlease send this information to support@pcjs.org. Thanks.");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue