Commit 701b393c authored by Nick Stenning's avatar Nick Stenning

Fix a couple of missing/typo'd dependency annotations

parent c85685e9
...@@ -32,8 +32,9 @@ resolve = ...@@ -32,8 +32,9 @@ resolve =
configureDocument = ['$provide', ($provide) -> configureDocument = ['$provide', ($provide) ->
$provide.decorator '$document', ($delegate) -> $provide.decorator '$document', ['$delegate', ($delegate) ->
$delegate.prop('baseURI', baseURI) $delegate.prop('baseURI', baseURI)
]
] ]
......
# Instantiates all objects used for cross frame discovery and communication. # Instantiates all objects used for cross frame discovery and communication.
module.exports = class CrossFrame module.exports = class CrossFrame
this.inject = [ this.$inject = [
'$rootScope', '$document', '$window', 'store', 'annotationUI' '$rootScope', '$document', '$window', 'store', 'annotationUI'
'Discovery', 'bridge', 'Discovery', 'bridge',
'AnnotationSync', 'AnnotationUISync' 'AnnotationSync', 'AnnotationUISync'
......
...@@ -3,7 +3,7 @@ mail = require('./vendor/jwz') ...@@ -3,7 +3,7 @@ mail = require('./vendor/jwz')
module.exports = class StreamController module.exports = class StreamController
this.inject = [ this.$inject = [
'$scope', '$route', '$rootScope', '$routeParams', '$scope', '$route', '$rootScope', '$routeParams',
'queryParser', 'searchFilter', 'store', 'queryParser', 'searchFilter', 'store',
'streamer', 'streamFilter', 'threading', 'annotationMapper' 'streamer', 'streamFilter', 'threading', 'annotationMapper'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment