Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. (function(){
  2. var app = angular.module("showcase", []);
  3.  
  4. app.controller("ItemController", function(){
  5. this.projects = projects;
  6. });
  7.  
  8. var projects = [
  9. {
  10. title: "With Blocks",
  11. description: "Design tool for creating patterns and art",
  12. languages: ["HTML + CSS", "Javascript"],
  13. link: "#test"
  14. },
  15. {
  16. title: "Taken Taken",
  17. description: "Domain name availability checker",
  18. languages: ["Ruby", "HTML + CSS", "Javascript"],
  19. link: "#"
  20. }
  21. ];
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement