mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
module.exports = function screenKeyboardDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
template: require('./screen-keyboard.jade'),
|
|
link: function (scope, element) {
|
|
var input = element.find('input')
|
|
|
|
|
|
}
|
|
}
|
|
}
|