Files
awx/awx/ui/client/components/input-search.directive.js
2017-06-12 09:53:11 -04:00

21 lines
438 B
JavaScript

// TODO: i18n
function atInputSearch () {
function link (scope) {
scope.config = scope.config || {};
scope.config.placeholder = scope.config.placeholder || 'SEARCH';
}
return {
restrict: 'E',
transclude: true,
templateUrl: 'static/partials/components/input-search.partial.html',
link,
scope: {
config: '='
}
};
}
export default atInputSearch;