Sorry if this is a stupid question, but how would I let a user navigate via 
dropdown menu to different views with different appearances using 
angularJS? 
I currently have the dropdown menu working, but I have no idea how to make 
it redirect as the user selects different options. 

var app = angular.module("app", ["ui.bootstrap"]);

app.controller("MainController", function($scope){

$scope.ListOfOpenCV = {};
$scope.ListOfOpenCV.filter = "";
$scope.filters = ["Canny", "Sobel"];
$scope.ListOfOpenCV.filter = $scope.filters[0];
});


-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to