Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
10db14cd
Commit
10db14cd
authored
Jul 30, 2015
by
Randall Leeds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused injections
parent
2e9b116d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
app-controller.coffee
h/static/scripts/app-controller.coffee
+4
-6
app-controller-test.coffee
h/static/scripts/test/app-controller-test.coffee
+0
-6
No files found.
h/static/scripts/app-controller.coffee
View file @
10db14cd
...
@@ -3,17 +3,15 @@ angular = require('angular')
...
@@ -3,17 +3,15 @@ angular = require('angular')
module
.
exports
=
class
AppController
module
.
exports
=
class
AppController
this
.
$inject
=
[
this
.
$inject
=
[
'$controller'
,
'$document'
,
'$location'
,
'$rootScope'
,
'$route'
,
'$scope'
,
'$controller'
,
'$document'
,
'$location'
,
'$route'
,
'$scope'
,
'$window'
,
'$window'
,
'auth'
,
'drafts'
,
'features'
,
'identity'
,
'auth'
,
'drafts'
,
'features'
,
'identity'
,
'
permissions'
,
'
streamer'
,
'annotationUI'
,
'streamer'
,
'annotationUI'
,
'annotationMapper'
,
'threading'
'annotationMapper'
,
'threading'
]
]
constructor
:
(
constructor
:
(
$controller
,
$document
,
$location
,
$rootScope
,
$route
,
$scope
,
$controller
,
$document
,
$location
,
$route
,
$scope
,
$window
,
$window
,
auth
,
drafts
,
features
,
identity
,
auth
,
drafts
,
features
,
identity
,
permissions
,
streamer
,
annotationUI
,
streamer
,
annotationUI
,
annotationMapper
,
threading
annotationMapper
,
threading
)
->
)
->
$controller
(
'AnnotationUIController'
,
{
$scope
})
$controller
(
'AnnotationUIController'
,
{
$scope
})
...
...
h/static/scripts/test/app-controller-test.coffee
View file @
10db14cd
...
@@ -11,7 +11,6 @@ describe 'AppController', ->
...
@@ -11,7 +11,6 @@ describe 'AppController', ->
fakeIdentity
=
null
fakeIdentity
=
null
fakeLocation
=
null
fakeLocation
=
null
fakeParams
=
null
fakeParams
=
null
fakePermissions
=
null
fakeStore
=
null
fakeStore
=
null
fakeStreamer
=
null
fakeStreamer
=
null
fakeStreamFilter
=
null
fakeStreamFilter
=
null
...
@@ -68,10 +67,6 @@ describe 'AppController', ->
...
@@ -68,10 +67,6 @@ describe 'AppController', ->
fakeParams
=
{
id
:
'test'
}
fakeParams
=
{
id
:
'test'
}
fakePermissions
=
{
permits
:
sandbox
.
stub
().
returns
(
true
)
}
fakeStore
=
{
fakeStore
=
{
SearchResource
:
{
SearchResource
:
{
get
:
sinon
.
spy
()
get
:
sinon
.
spy
()
...
@@ -104,7 +99,6 @@ describe 'AppController', ->
...
@@ -104,7 +99,6 @@ describe 'AppController', ->
$provide
.
value
'identity'
,
fakeIdentity
$provide
.
value
'identity'
,
fakeIdentity
$provide
.
value
'$location'
,
fakeLocation
$provide
.
value
'$location'
,
fakeLocation
$provide
.
value
'$routeParams'
,
fakeParams
$provide
.
value
'$routeParams'
,
fakeParams
$provide
.
value
'permissions'
,
fakePermissions
$provide
.
value
'store'
,
fakeStore
$provide
.
value
'store'
,
fakeStore
$provide
.
value
'streamer'
,
fakeStreamer
$provide
.
value
'streamer'
,
fakeStreamer
$provide
.
value
'streamfilter'
,
fakeStreamFilter
$provide
.
value
'streamfilter'
,
fakeStreamFilter
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment