EVOLUTION-MANAGER
Edit File: index-jquery.html
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example92-jquery</title> <link href="animations.css" rel="stylesheet" type="text/css"> <script src="../../components/jquery-2.1.1/jquery.js"></script> <script src="../../../angular.js"></script> <script src="../../../angular-animate.js"></script> <script src="script.js"></script> </head> <body ng-app="switchExample"> <div ng-controller="ExampleController"> <select ng-model="selection" ng-options="item for item in items"> </select> <tt>selection={{selection}}</tt> <hr/> <div class="animate-switch-container" ng-switch on="selection"> <div class="animate-switch" ng-switch-when="settings">Settings Div</div> <div class="animate-switch" ng-switch-when="home">Home Span</div> <div class="animate-switch" ng-switch-default>default</div> </div> </div> </body> </html>