Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html ng-app="plunker">
  3.  
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>AngularJS Plunker</title>
  7. <link href="https://dl.dropboxusercontent.com/s/hg36tk1m7rc4gnj/style.css?m=" rel="stylesheet"/>
  8. <link rel="stylesheet" href="style.css">
  9.  
  10. <link href="https://dl.dropboxusercontent.com/s/bbvcx2zc4ocuqzt/bootstrap.min.css?m=" rel="stylesheet"/>
  11. <script src="https://dl.dropboxusercontent.com/s/ofdwftbq0e2p61x/angular.js" ></script>
  12. <script src="https://dl.dropboxusercontent.com/s/32a1ac9t8r4fguk/ui-bootstrap-tpls-0.10.0.js?m="></script>
  13. <script src="script.js"></script>
  14. </head>
  15.  
  16. <body >
  17. <div ng-controller="ModalDemoCtrl">
  18. <button class="btn" ng-click="open()">Open Modal</button>
  19.  
  20.  
  21. <div class="container">
  22.  
  23. <div class="swap-div" ng-repeat="item in items"><ul>
  24. <li class="clickTestCaseRow"ng-click="getId(item)" >
  25. <a href="#" class="left-space">{{ item.id }} | {{ item.name + ' ' + item.content }}</a>
  26. <a class="move-icon dragrow_h"></a>
  27. <a class="icon1 edit_delete_copyFunctiontiy_h" ></a>
  28. </li>
  29. </ul>
  30. </div>
  31. <!--div>
  32.  
  33. <ul>
  34. <li ng-repeat="item in items">
  35. <a ng-click="getId(item)">{{ item.id }} | {{ item.name + ' ' + item.content }}</a>
  36. </li>
  37. </ul>
  38.  
  39. </div-->
  40. </div>
  41. </div>
  42. </body>
  43.  
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement