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 =
configureDocument = ['$provide', ($provide) ->
$provide.decorator '$document', ($delegate) ->
$provide.decorator '$document', ['$delegate', ($delegate) ->
$delegate.prop('baseURI', baseURI)
]
]
......
# Instantiates all objects used for cross frame discovery and communication.
module.exports = class CrossFrame
this.inject = [
this.$inject = [
'$rootScope', '$document', '$window', 'store', 'annotationUI'
'Discovery', 'bridge',
'AnnotationSync', 'AnnotationUISync'
......
......@@ -3,7 +3,7 @@ mail = require('./vendor/jwz')
module.exports = class StreamController
this.inject = [
this.$inject = [
'$scope', '$route', '$rootScope', '$routeParams',
'queryParser', 'searchFilter', 'store',
'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