diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2014-05-13 12:39:13 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2014-06-10 10:23:29 +0200 |
commit | 40a25ecf371ebfcbb0801e1f99e3a2853439f44b (patch) | |
tree | 658d019dbeaa1559737051648ae4bd0458cfe0d4 /install/ui/src/freeipa/search.js | |
parent | 5c3fd4bb832859172fa6e7c739724f6562ccfb7f (diff) | |
download | freeipa-40a25ecf371ebfcbb0801e1f99e3a2853439f44b.tar.gz freeipa-40a25ecf371ebfcbb0801e1f99e3a2853439f44b.tar.xz freeipa-40a25ecf371ebfcbb0801e1f99e3a2853439f44b.zip |
webui: add search box placeholder text
Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
Diffstat (limited to 'install/ui/src/freeipa/search.js')
-rw-r--r-- | install/ui/src/freeipa/search.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/search.js b/install/ui/src/freeipa/search.js index a8bb928ee..56afa0de9 100644 --- a/install/ui/src/freeipa/search.js +++ b/install/ui/src/freeipa/search.js @@ -118,7 +118,8 @@ IPA.search_facet = function(spec, no_init) { that.filter = $('<input/>', { type: 'text', 'class': 'form-control', - name: 'filter' + name: 'filter', + placeholder: text.get('@i18n:search.placeholder') }).appendTo(that.filter_container); that.filter.keypress(function(e) { |