Bug 1197265 - Remove frontend code for 'timeline' and 'machines'

This commit is contained in:
Jonathan French 2015-08-21 13:23:19 -04:00
Родитель 71f797611d
Коммит 9d0abd9139
6 изменённых файлов: 0 добавлений и 24 удалений

Просмотреть файл

@ -96,8 +96,6 @@
<script src="js/controllers/repository.js"></script>
<script src="js/controllers/filters.js"></script>
<script src="js/controllers/jobs.js"></script>
<script src="js/controllers/machines.js"></script>
<script src="js/controllers/timeline.js"></script>
<!-- Plugins -->
<script src="plugins/tabs.js"></script>
<script src="plugins/controller.js"></script>

Просмотреть файл

@ -1,6 +0,0 @@
"use strict";
treeherderApp.controller('MachinesCtrl', [
'$scope',
function MachinesCtrl($scope){}
]);

Просмотреть файл

@ -1,6 +0,0 @@
"use strict";
treeherderApp.controller('TimelineCtrl', [
'$scope',
function TimelineCtrl($scope){}
]);

Просмотреть файл

@ -33,13 +33,5 @@ treeherderApp.config(function($compileProvider, $routeProvider, $httpProvider, $
templateUrl: 'partials/main/jobs.html',
reloadOnSearch: false
}).
when('/timeline', {
controller: 'TimelineCtrl',
templateUrl: 'partials/main/timeline.html'
}).
when('/machines', {
controller: 'MachinesCtrl',
templateUrl: 'partials/main/machines.html'
}).
otherwise({redirectTo: '/jobs'});
});

Просмотреть файл

@ -1 +0,0 @@
<p>machines view</p>

Просмотреть файл

@ -1 +0,0 @@
<p>timeline view</p>