blob: 62a0cd4bbd02c5c1980b4d016c4e81871d9d306b [file] [log] [blame]
module.exports = function textFocusSelectDirective() {
return {
restrict: 'AC',
link: function(scope, element) {
// TODO: try with focus event
element.bind('click', function() {
this.select()
})
}
}
}