diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-08-03 16:18:27 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-08-21 14:35:19 +0200 |
commit | 2d63e28c7825ced7d038d6ea655416f5648e6c23 (patch) | |
tree | aa31864a5404f863f94c9580ed2c835f2be6f7d9 /install/ui/field.js | |
parent | af4d5344284e81b3241b0e3284ab98d876644c83 (diff) | |
download | freeipa.git-2d63e28c7825ced7d038d6ea655416f5648e6c23.tar.gz freeipa.git-2d63e28c7825ced7d038d6ea655416f5648e6c23.tar.xz freeipa.git-2d63e28c7825ced7d038d6ea655416f5648e6c23.zip |
Range Web UI
Range web UI was implemented.
It consist of:
* new menu item - 'ranges' in 'IPA Server' tab
* new search page
* new details page
https://fedorahosted.org/freeipa/ticket/2894
Diffstat (limited to 'install/ui/field.js')
-rw-r--r-- | install/ui/field.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/field.js b/install/ui/field.js index 41861c0b..8e2d116c 100644 --- a/install/ui/field.js +++ b/install/ui/field.js @@ -350,7 +350,7 @@ IPA.field = function(spec) { if (that.widget) { if (that.label) that.widget.label = that.label; - if (that.title) that.widget.title = that.title; + if (that.tooltip) that.widget.tooltip = that.tooltip; if (that.measurement_unit) that.widget.measurement_unit = that.measurement_unit; that.widget.undo = that.undo; that.widget.writable = that.writable; |