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/json2.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 install/ui/src/freeipa/json2.js (limited to 'install/ui/src/freeipa/json2.js') diff --git a/install/ui/src/freeipa/json2.js b/install/ui/src/freeipa/json2.js new file mode 100644 index 00000000..dfc4773e --- /dev/null +++ b/install/ui/src/freeipa/json2.js @@ -0,0 +1,27 @@ +/* Authors: + * Petr Vobornik + * + * Copyright (C) 2012 Red Hat + * see file 'COPYING' for use and warranty information + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ + +// +// AMD Wrapper for json2 library +// + +define(function() { + return JSON; +}); \ No newline at end of file -- cgit