summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/search.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-11-12 18:05:13 +0100
committerPetr Vobornik <pvoborni@redhat.com>2013-01-18 15:10:36 +0100
commit5e90c9884977b07be8cd0d4f6377b633f29e4ad1 (patch)
tree6ab0a8f166cef39558078762d0bce42c8a00eeeb /install/ui/src/freeipa/search.js
parente3ce3e4f393d45d4e611a129db6cb7abfa5ad716 (diff)
downloadfreeipa-5e90c9884977b07be8cd0d4f6377b633f29e4ad1.tar.gz
freeipa-5e90c9884977b07be8cd0d4f6377b633f29e4ad1.tar.xz
freeipa-5e90c9884977b07be8cd0d4f6377b633f29e4ad1.zip
Change Web UI sources to simple AMD modules
Web UI sources were wrapped by AMD definition. Listed dependencies were changed accordingly. https://fedorahosted.org/freeipa/ticket/112
Diffstat (limited to 'install/ui/src/freeipa/search.js')
-rw-r--r--install/ui/src/freeipa/search.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/search.js b/install/ui/src/freeipa/search.js
index b54c375f7..a3f35b5e9 100644
--- a/install/ui/src/freeipa/search.js
+++ b/install/ui/src/freeipa/search.js
@@ -1,5 +1,3 @@
-/*jsl:import ipa.js */
-
/* Authors:
* Pavel Zuna <pzuna@redhat.com>
* Adam Young <ayoung@redhat.com>
@@ -23,7 +21,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/* REQUIRES: ipa.js */
+define(['./ipa', './jquery', './facet'], function(IPA, $) {
IPA.search_facet = function(spec, no_init) {
@@ -488,4 +486,7 @@ IPA.batch_enable_action = function(spec) {
spec.confirm_msg = spec.confirm_msg || IPA.messages.search.enable_confirm;
return IPA.batch_items_action(spec);
-}; \ No newline at end of file
+};
+
+return {};
+});