Created
October 16, 2013 08:36
-
-
Save HAKASHUN/7004548 to your computer and use it in GitHub Desktop.
AngularJSでHello World!
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
function HelloController($scope) { | |
$scope.greeting = { text: 'Hello World!' }; | |
} |
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
<html ng-app> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HelloWorld</title> | |
<script src="../bower_components/angular/angular.js"></script> | |
<script src="js/controllers.js"></script> | |
</head> | |
<body> | |
<div ng-controller="HelloController"> | |
<p>{{greeting.text}}</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment