summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/jquery.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/jquery.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/jquery.js')
-rw-r--r--install/ui/src/freeipa/jquery.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/jquery.js b/install/ui/src/freeipa/jquery.js
new file mode 100644
index 000000000..da86e95d3
--- /dev/null
+++ b/install/ui/src/freeipa/jquery.js
@@ -0,0 +1,26 @@
+/* Authors:
+ * Petr Vobornik <pvoborni@redhat.com>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+*/
+
+//
+// AMD Wrapper for jquery library
+//
+define(function() {
+ return jQuery;
+}); \ No newline at end of file