Small fixes to robot.js
This commit is contained in:
parent
a4498d0281
commit
e74675d65a
15
lib/robot.js
15
lib/robot.js
|
@ -79,7 +79,7 @@ var Robot = module.exports = function Robot(opts) {
|
|||
this.work = opts.work || opts.play;
|
||||
|
||||
if (!this.work) {
|
||||
this.work = function() { Logger.debug("No work yet."); }
|
||||
this.work = function() { Logger.debug("No work yet."); };
|
||||
}
|
||||
|
||||
this.registerDefaults();
|
||||
|
@ -153,13 +153,14 @@ Robot.randomName = function() {
|
|||
// Returns an Object containing Robot data
|
||||
Robot.prototype.toJSON = function() {
|
||||
var devices = [],
|
||||
connections = [];
|
||||
connections = [],
|
||||
n;
|
||||
|
||||
for (var n in this.connections) {
|
||||
for (n in this.connections) {
|
||||
connections.push(this.connections[n]);
|
||||
}
|
||||
|
||||
for (var n in this.devices) {
|
||||
for (n in this.devices) {
|
||||
devices.push(this.devices[n]);
|
||||
}
|
||||
|
||||
|
@ -257,7 +258,7 @@ Robot.prototype.start = function() {
|
|||
if (!!err) {
|
||||
Logger.fatal("An error occured while trying to start the robot:");
|
||||
Logger.fatal(err);
|
||||
if (typoef(this.error) === 'function') {
|
||||
if (typeof(this.error) === 'function') {
|
||||
this.error.call(this, err);
|
||||
}
|
||||
this.emit('error', err);
|
||||
|
@ -366,11 +367,11 @@ Robot.prototype.initAdaptor = function(adaptorName, connection, opts) {
|
|||
extraParams: opts
|
||||
});
|
||||
|
||||
return Utils.proxyTestStubs(adaptor.commands, testAdaptor);
|
||||
Utils.proxyTestStubs(adaptor.commands, testAdaptor);
|
||||
|
||||
for (var prop in adaptor) {
|
||||
if (typeof adaptor[prop] === 'function' && !testAdaptor[prop]) {
|
||||
testAdaptor[prop] = function() { return true; }
|
||||
testAdaptor[prop] = function() { return true; };
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue