Skip to content

Instantly share code, notes, and snippets.

@nakaearth
Last active December 30, 2015 18:38
Show Gist options
  • Select an option

  • Save nakaearth/7868434 to your computer and use it in GitHub Desktop.

Select an option

Save nakaearth/7868434 to your computer and use it in GitHub Desktop.
ブログ用のサンプルコード
<!DOCTYPE HTML>
<html ng-app>
<head>
<script src="assets/application.js"></script>
<script src="js/testScript.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<br/>
<font size="4">Hello {{yourName}}!</font>
</div>
<br/>
<div ng-controller="testCtrl">
<div ng-repeat="user in users" >
{{user.name }} {{user.point }}
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment