Skip to content
This repository has been archived by the owner on Sep 20, 2020. It is now read-only.

Commit

Permalink
fix(statevis): add dep from statevis to sticky
Browse files Browse the repository at this point in the history
- Need to redo this at some point. This dependency should not exist.

Closes #153
  • Loading branch information
christopherthielen committed Feb 2, 2015
1 parent abfdc34 commit 1a488d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions files.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ modules.sticky.src = ['src/stickyProvider.js'].concat(modules.sticky.src);
modules.core.src.push('src/util.js');
modules.future.test.push('src/fsfactories/ngload.js');
modules.future.test.push('src/fsfactories/iframe.js');
modules.statevis.test.push('build/modular/ct-ui-router-extras.sticky.js');
modules.previous.test.push('build/modular/ct-ui-router-extras.transition.js');

// Build the monolithic module 'all' which sucks in all the others
Expand Down
2 changes: 1 addition & 1 deletion src/statevis.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// statevis requires d3.
(function () {
"use strict";
var app = angular.module("ct.ui.router.extras.statevis", [ 'ct.ui.router.extras.core' ]);
var app = angular.module("ct.ui.router.extras.statevis", [ 'ct.ui.router.extras.core', 'ct.ui.router.extras.sticky' ]);

app.directive('stateVis', [ '$state', '$timeout', '$interval', stateVisDirective ]);

Expand Down

0 comments on commit 1a488d8

Please sign in to comment.