Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save platoosom/cee713c35ac02397d0297afe0ed25c1f to your computer and use it in GitHub Desktop.
Save platoosom/cee713c35ac02397d0297afe0ed25c1f to your computer and use it in GitHub Desktop.
<script>
var application = angular.module('application', [])
application.controller('newYearResolutionListWidget', function ($scope) {
$scope.lists = [
{id: 1, title: 'ดื่มน้ำวันละ 3 ลิตร'},
{id: 2, title: 'ซ้อมกีต้าร์วันละเพลง'},
{id: 3, title: 'ฝึกภาษาอังกฤษวันละคลิป'}
]
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment