Skip to content

Commit

Permalink
waterfall: fix ReferenceError
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemPi committed Nov 3, 2015
1 parent 411f38a commit 9b46c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/waterfall_view/src/module/main.module.coffee
Expand Up @@ -50,9 +50,9 @@ class Waterfall extends Controller

# Load data (builds and builders)
builders = @dataService.getBuilders()
$scope.builders = builders.getArray()
@$scope.builders = builders.getArray()
builds = @dataService.getBuilds({limit: @c.limit, order: '-complete_at'})
$scope.builds = builds.getArray()
@$scope.builds = builds.getArray()

$q.all([d3Service.get(), builders, builds]).then ([@d3, @builders, @builds]) =>

Expand Down

0 comments on commit 9b46c0e

Please sign in to comment.