This commit is contained in:
Cameron Dawson 2013-07-17 17:18:05 -07:00
Родитель 6086b3bdf6
Коммит e5cd2a1909
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -1,17 +1,17 @@
"use strict";
treeherder.controller('MainCtrl',
function MainController($scope, $http){
$scope.query=""
function MainController($scope, $http){
$scope.query="";
}
);
treeherder.controller('DropDownMenuCtrl',
function DropDownMenuCtrl($scope, $http){
function DropDownMenuCtrl($scope, $http){
// get the menu items
$http.get('resources/menu.json').success(function(data) {
$scope.menu = data.menu;
});
}
}
);