diff options
| author | Alon Levy <alon@pobox.com> | 2015-03-01 11:49:17 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-03-01 11:49:17 +0200 |
| commit | 27837b700386586100b7f588fed62e7a23e02167 (patch) | |
| tree | ddb577b86ed3156bedf85013aa62672f62613564 | |
| parent | 4cdf0483794a2dcdfc3e23098ef8dcff71256631 (diff) | |
lib/Bacon: add print when loading before jquery (will be overwritten when we upgrade Bacon)
| -rw-r--r-- | res/client/lib/Bacon.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/res/client/lib/Bacon.js b/res/client/lib/Bacon.js index 7ec98e57..96c3eab3 100644 --- a/res/client/lib/Bacon.js +++ b/res/client/lib/Bacon.js @@ -75,6 +75,8 @@ if ((_ref = typeof jQuery !== "undefined" && jQuery !== null ? jQuery : typeof Zepto !== "undefined" && Zepto !== null ? Zepto : void 0) != null) { _ref.fn.asEventStream = Bacon.$.asEventStream; + } else { + console.log('Bacon loading before jQuery'); } Bacon.fromEventTarget = function(target, eventName, eventTransformer) { |
