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

Sort imported services alphabetically

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