mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:23:28 +02:00
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
//input.form-control(type='text', placeholder='', ng-model='selectedAction',
|
|
// typeahead='action for action in activityActions')
|
|
|
|
module.exports = function textHistoryDirective() {
|
|
return {
|
|
restrict: 'A',
|
|
template: '',
|
|
link: function (scope, element, attrs) {
|
|
|
|
}
|
|
}
|
|
}
|