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/dialog.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'install/ui/src/freeipa/dialog.js') diff --git a/install/ui/src/freeipa/dialog.js b/install/ui/src/freeipa/dialog.js index 4e603155..f2326b32 100644 --- a/install/ui/src/freeipa/dialog.js +++ b/install/ui/src/freeipa/dialog.js @@ -20,7 +20,7 @@ * along with this program. If not, see . */ -/* REQUIRES: widget.js, details.js */ +define(['./ipa', './jquery', './field', './widget'], function(IPA, $) { IPA.opened_dialogs = { @@ -847,3 +847,6 @@ IPA.confirm_mixin = function() { } }; }; + +return {}; +}); \ No newline at end of file -- cgit