diff options
| author | Alon Levy <alon@pobox.com> | 2015-03-17 08:14:04 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-03-17 08:14:04 +0200 |
| commit | bf4df7f0c9898f748bce01ed237e0c52738432cf (patch) | |
| tree | 58da36b7a2211fb63d459f73f4ea916980aa5e4a /src/client/view/graph_view.js | |
| parent | cb8304d24eefe57cd3ae35aa26275277af92d73d (diff) | |
client: Bacon/jquery dependency: use shim
add shim requirement for Bacon to have jquery loaded first, since Bacon
patches in asEventStream (and other APIs).
Undo the Bacon_wrapper non fix:
git grep -l Bacon_wrapper | while read f; do sed -i -e s/Bacon_wrapper/Bacon/g $f; done
Diffstat (limited to 'src/client/view/graph_view.js')
| -rw-r--r-- | src/client/view/graph_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 9942e2d6..9a0b78d1 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -25,7 +25,7 @@ * which resulted in overly complex (read: undefined/buggy) code. */ -define(['d3', 'Bacon_wrapper', 'consts', 'util', 'view/selection', 'view/helpers', 'model/diff', 'view/view', 'view/bubble', 'model/types'], +define(['d3', 'Bacon', 'consts', 'util', 'view/selection', 'view/helpers', 'model/diff', 'view/view', 'view/bubble', 'model/types'], function(d3 , Bacon , consts, util , selection , view_helpers, model_diff , view, view_bubble, model_types) { // aliases |
