mirror of
https://github.com/openstf/stf
synced 2025-10-06 03:50:04 +02:00
12 lines
288 B
JavaScript
12 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) {
|
|
|
|
}
|
|
}
|
|
}
|