summaryrefslogtreecommitdiff
path: root/src/client/Bacon_wrapper.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-03-01 11:50:11 +0200
committerAlon Levy <alon@pobox.com>2015-03-01 11:50:11 +0200
commit4a34fd6e0a9bbab85b6728288fb8e1a87e7171a7 (patch)
tree459be824996467698524203809f53a9e8b0388e0 /src/client/Bacon_wrapper.js
parent2c7b698707ea7bcb894cb3254bb55d94e468b0de (diff)
client: add Bacon_wrapper, use instead of Bacon; forced loading of jquery before Bacon
Diffstat (limited to 'src/client/Bacon_wrapper.js')
-rw-r--r--src/client/Bacon_wrapper.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/Bacon_wrapper.js b/src/client/Bacon_wrapper.js
new file mode 100644
index 00000000..1a45379e
--- /dev/null
+++ b/src/client/Bacon_wrapper.js
@@ -0,0 +1,4 @@
+/* Force jquery to load before Bacon */
+define(['jquery', 'Bacon'], function($, Bacon) {
+ return Bacon;
+});