Correct templating in dist file

This commit is contained in:
Andrew Stewart 2014-01-13 11:40:53 -08:00
parent 8e86b76a71
commit 32126d341c
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(Cylon.Adaptors.Keyboard, args, function(){});
})(Cylon.Adaptors.<%= adaptorClassName %>, args, function(){});
},
driver: function() {
var args;
@ -33,7 +33,7 @@
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(Cylon.Drivers.Keyboard, args, function(){});
})(Cylon.Drivers.<%= adaptorClassName %>, args, function(){});
},
register: function(robot) {}
};