EVOLUTION-MANAGER
Edit File: index-debug.html
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example89-debug</title> <link href="glyphicons.css" rel="stylesheet" type="text/css"> <link href="animations.css" rel="stylesheet" type="text/css"> <script src="../../../angular.js"></script> <script src="../../../angular-animate.js"></script> </head> <body ng-app="ngAnimate"> Click me: <input type="checkbox" ng-model="checked"><br/> <div> Show: <div class="check-element animate-show" ng-show="checked"> <span class="glyphicon glyphicon-thumbs-up"></span> I show up when your checkbox is checked. </div> </div> <div> Hide: <div class="check-element animate-show" ng-hide="checked"> <span class="glyphicon glyphicon-thumbs-down"></span> I hide when your checkbox is checked. </div> </div> </body> </html>