mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
module.exports = function screenKeyboardDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
template: require('./screen-keyboard.jade'),
|
|
link: function (scope, element) {
|
|
element.find('input')
|
|
|
|
}
|
|
}
|
|
}
|