Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <ven-activity class="animate" ng-click="selectActivity($index)"activite="activite" ng-repeat="activite in data.activites | filter :{hide:true}"></ven-activity>
  2.  
  3. .animate {
  4. ...
  5. ...
  6. }
  7.  
  8. .animate.ng-leave.ng-leave-active,
  9. .animate.ng-enter {
  10. ...
  11. ...
  12. }
  13.  
  14. .animate.ng-enter.ng-enter-active,
  15. .animate.ng-leave {
  16. .....
  17.  
  18.  
  19. .....
  20. }
  21.  
  22. <head>
  23. <meta charset="utf-8">
  24. <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
  25. <title></title>
  26.  
  27. <link href="css/style.css" rel="stylesheet">
  28.  
  29. <!-- ionic/angularjs js -->
  30.  
  31.  
  32. <script src="lib/angular-animate/angular-animate.js"></script>
  33.  
  34. <!-- your app's js -->
  35. <script src="js/app.js"></script>
  36.  
  37. <script src="js/Controllers/venActivityCtrl.js"></script>
  38.  
  39. <script src="js/Directives/venActivity.js"></script>
  40.  
  41. </head>
  42.  
  43. angular.module('starter', ['ionic','ionic-material','ngAnimate'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement