Files
stf-DeviceFarmer-1/res/app/control-panes/advanced/input/input-controller.js
2014-05-27 18:35:50 +09:00

13 lines
285 B
JavaScript

module.exports = function InputCtrl($scope, KeycodesAndroid) {
$scope.press = function (key) {
console.log(key)
var mapped = KeycodesAndroid[key]
if (mapped) {
$scope.control.rawKeyPress(mapped)
} else {
console.error(key + ' is not mapped')
}
}
}