summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/association.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/association.js')
-rw-r--r--install/ui/src/freeipa/association.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/association.js b/install/ui/src/freeipa/association.js
index 70b8e9f1..c6b9e5a4 100644
--- a/install/ui/src/freeipa/association.js
+++ b/install/ui/src/freeipa/association.js
@@ -1,5 +1,3 @@
-/*jsl:import ipa.js */
-
/* Authors:
* Adam Young <ayoung@redhat.com>
* Petr Vobornik <pvoborni@redhat.com>
@@ -21,10 +19,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/* REQUIRES: ipa.js */
/* CURRENTLY ALSO REQUIRES search.js, because it reuses it's code to create
* the AssociationList elements; IT NEEDS IT'S OWN CODE! */
+define(['./ipa', './jquery', './search', './dialog'], function(IPA, $) {
+
IPA.associator = function (spec) {
spec = spec || {};
@@ -1386,4 +1385,7 @@ IPA.attr_read_only_evaluator = function(spec) {
};
return that;
-}; \ No newline at end of file
+};
+
+return {};
+});