mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
15 lines
321 B
JavaScript
15 lines
321 B
JavaScript
export default function(clickable, is) {
|
|
return function(obj, scope = '') {
|
|
if (scope !== '') {
|
|
scope = scope + ' ';
|
|
}
|
|
return {
|
|
...obj,
|
|
...{
|
|
submit: clickable(scope + '[type=submit]'),
|
|
submitIsEnabled: is(':not(:disabled)', scope + '[type=submit]'),
|
|
},
|
|
};
|
|
};
|
|
}
|