Files
vczero.github.io/t/lib/list/menuController.js
T
2014-12-11 00:12:26 +08:00

14 lines
267 B
JavaScript

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