Commit 8da671cc authored by Gergely Ujvari's avatar Gergely Ujvari

Sort imported services alphabetically

parent b040f21f
class AccountController
@inject = [ '$scope', '$filter',
'flash', 'formHelpers', 'identity', 'session', 'auth']
'auth', 'flash', 'formHelpers', 'identity', 'session']
constructor: ($scope, $filter,
flash, formHelpers, identity, session, auth ) ->
auth, flash, formHelpers, identity, session) ->
persona_filter = $filter('persona')
$scope.subscriptionDescription =
reply: 'Receive notification emails when: - Someone replies to one of my annotations'
......
class AppController
this.$inject = [
'$location', '$route', '$scope', '$timeout',
'annotator', 'flash', 'identity', 'streamer', 'streamfilter',
'documentHelpers', 'drafts', 'auth'
'annotator', 'auth', 'documentHelpers', 'drafts', 'flash', 'identity',
'streamer', 'streamfilter'
]
constructor: (
$location, $route, $scope, $timeout,
annotator, flash, identity, streamer, streamfilter,
documentHelpers, drafts, auth
annotator, auth, documentHelpers, drafts, flash, identity,
streamer, streamfilter,
) ->
{plugins, host, providers} = annotator
......
......@@ -38,9 +38,9 @@ validate = (value) ->
###
AnnotationController = [
'$scope', '$timeout',
'annotator', 'drafts', 'flash', 'documentHelpers', 'timeHelpers', 'auth'
'annotator', 'auth', 'drafts', 'flash', 'documentHelpers', 'timeHelpers'
($scope, $timeout,
annotator, drafts, flash, documentHelpers, timeHelpers, auth
annotator, auth, drafts, flash, documentHelpers, timeHelpers
) ->
@annotation = {}
@action = 'view'
......
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