Files
vczero.github.io/t/lib/list/menuController.js
T
2014-12-12 13:49:53 +08:00

14 lines
291 B
JavaScript

app.controller('MenuController', ['$scope', '$location',function($scope, $location){
$scope.bookSearch = function(){
$location.path('/book');
};
$scope.musicSearch = function(){
$location.path('/music');
};
$scope.movieSearch = function(){
$location.path('/movie');
};
}]);