Whitespace cleanup

This commit is contained in:
Josh Matz
2013-04-22 21:19:53 -05:00
parent d36a7240bf
commit e620988fc3

View File

@@ -1,6 +1,6 @@
var module = angular.module('commafeed.controllers', []);
module.run(function($rootScope) {
module.run(['$rootScope', function($rootScope) {
$rootScope.$on('emitMark', function(event, args) {
// args.entry - the entry
$rootScope.$broadcast('mark', args);
@@ -14,7 +14,7 @@ module.run(function($rootScope) {
$rootScope.$on('emitReload', function(event, args) {
$rootScope.$broadcast('reload');
});
});
}]);
module.controller('SubscribeCtrl', ['$scope', 'FeedService', 'CategoryService',
function($scope, FeedService, CategoryService) {
@@ -91,8 +91,7 @@ function($scope, FeedService, CategoryService) {
module.controller('CategoryTreeCtrl', ['$scope', '$timeout', '$stateParams', '$window',
'$location', '$state', '$route', 'CategoryService',
function($scope, $timeout, $stateParams,
$window, $location, $state, $route, CategoryService) {
function($scope, $timeout, $stateParams, $window, $location, $state, $route, CategoryService) {
$scope.selectedType = $stateParams._type;
$scope.selectedId = $stateParams._id;
@@ -280,8 +279,7 @@ function($scope, $http, $state, $stateParams, $route, $location,
module.controller('FeedListCtrl', ['$scope', '$stateParams', '$http', '$route',
'$window', 'EntryService', 'SettingsService', 'FeedService', 'CategoryService',
function($scope, $stateParams, $http, $route,
$window, EntryService, SettingsService, FeedService, CategoryService) {
function($scope, $stateParams, $http, $route, $window, EntryService, SettingsService, FeedService, CategoryService) {
$scope.selectedType = $stateParams._type;
$scope.selectedId = $stateParams._id;