From 5e90c9884977b07be8cd0d4f6377b633f29e4ad1 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 12 Nov 2012 18:05:13 +0100 Subject: 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 --- install/ui/src/freeipa/automount.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'install/ui/src/freeipa/automount.js') diff --git a/install/ui/src/freeipa/automount.js b/install/ui/src/freeipa/automount.js index 3a4491d8b..6e8547c7f 100644 --- a/install/ui/src/freeipa/automount.js +++ b/install/ui/src/freeipa/automount.js @@ -1,6 +1,3 @@ -/*jsl:import ipa.js */ -/*jsl:import search.js */ - /* Authors: * Adam Young * @@ -21,7 +18,8 @@ * along with this program. If not, see . */ -/* REQUIRES: ipa.js, details.js, search.js, add.js, facet.js, entity.js */ +define(['./ipa', './jquery', './details', './search', './association', + './entity'], function(IPA, $) { IPA.automount = {}; @@ -352,3 +350,6 @@ IPA.automount.key_search_facet = function(spec) { IPA.register('automountlocation', IPA.automount.location_entity); IPA.register('automountmap', IPA.automount.map_entity); IPA.register('automountkey', IPA.automount.key_entity); + +return {}; +}); \ No newline at end of file -- cgit