Created
May 4, 2015 21:49
-
-
Save superchris/100cf971f75357b62b53 to your computer and use it in GitHub Desktop.
JS Bin Factory lab solution // source http://jsbin.com/qotunu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html ng-app="studentApp"> | |
| <head> | |
| <meta name="description" content="Factory lab solution" /> | |
| <script src="http://code.jquery.com/jquery.min.js"></script> | |
| <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" /> | |
| <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" /> | |
| <script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script> | |
| <script src="http://code.angularjs.org/1.3.15/angular-route.js"></script> | |
| <meta charset=utf-8 /> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-controller="StudentCtrl as studentList"> | |
| <ul> | |
| <li ng-repeat="student in studentList.students">{{student.name}}<img ng-src="http://avatars.io/email/{{student.email}}" /></li> | |
| </ul> | |
| <script id="jsbin-javascript"> | |
| studentApp = angular.module("studentApp", []); | |
| studentApp.factory("Student", function() { | |
| return { | |
| students: [{ | |
| id: 1, | |
| name: "Joe Blow", | |
| email: "[email protected]" | |
| }, { | |
| id: 2, | |
| name: "John Doe", | |
| email: "" | |
| }], | |
| }; | |
| }); | |
| studentApp.controller("StudentCtrl", function(Student) { | |
| this.students = Student.students; | |
| }); | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">studentApp = angular.module("studentApp", []); | |
| studentApp.factory("Student", function() { | |
| return { | |
| students: [{ | |
| id: 1, | |
| name: "Joe Blow", | |
| email: "[email protected]" | |
| }, { | |
| id: 2, | |
| name: "John Doe", | |
| email: "" | |
| }], | |
| }; | |
| }); | |
| studentApp.controller("StudentCtrl", function(Student) { | |
| this.students = Student.students; | |
| }); | |
| </script></body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| studentApp = angular.module("studentApp", []); | |
| studentApp.factory("Student", function() { | |
| return { | |
| students: [{ | |
| id: 1, | |
| name: "Joe Blow", | |
| email: "[email protected]" | |
| }, { | |
| id: 2, | |
| name: "John Doe", | |
| email: "" | |
| }], | |
| }; | |
| }); | |
| studentApp.controller("StudentCtrl", function(Student) { | |
| this.students = Student.students; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment