removed unused js and css files, remoted html5 notifications (for now)

This commit is contained in:
Brad Rydzewski
2014-07-13 16:46:49 -07:00
parent 54984a7363
commit 063969842b
18 changed files with 9 additions and 3837 deletions

View File

@@ -1,6 +1,6 @@
'use strict';
angular.module('app').controller("RepoController", function($scope, $http, $routeParams, $route, repos, feed, repo, notify) {
angular.module('app').controller("RepoController", function($scope, $http, $routeParams, $route, repos, feed, repo) {
$scope.repo = repo;
// subscribes to the global feed to receive
@@ -15,12 +15,9 @@ angular.module('app').controller("RepoController", function($scope, $http, $rout
$scope.msg = item;
$scope.$apply();
} else {
// we trigger an html5 notification so the
// we trigger a toast (or html5) notification so the
// user is aware another build started
notify.sendCommit(
item.repo,
item.commit
);
}
});