mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
module.exports = function textFocusSelectDirective() {
|
|
return {
|
|
restrict: 'AC',
|
|
link: function (scope, element) {
|
|
// TODO: try with focus event
|
|
element.bind('click', function () {
|
|
this.select()
|
|
})
|
|
}
|
|
}
|
|
}
|