-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
52 lines (47 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html ng-app="SaySomenthing" ng-csp>
<head>
<meta charset="utf-8">
<title>Chrome Apps Hackathon - 27/Apr/2013</title>
<link rel="stylesheet" href="public/stylesheet/application.css">
</head>
<body ng-controller="TodoController">
<sidebar id="sidebar" ng-class="getClassSidebar()">
<header id="header-sidebar" class="header limit" role="banner">
<h1>My to-do List</h1>
</header>
<main role="main" class="limit">
<ul class="list">
<li ng-repeat="item in items">
<div ng-class="getListItemClass(item)">
<p>{{item.content}}</p>
</div>
<div class="box-actions">
<a href="" ng-class="getCheckButtonClass(item)" ng-click="checkTodoItem(item)"></a>
<a href="" class="icon-trash" ng-click="remove($index, item)"></a>
</div>
</li>
</ul>
</main>
</sidebar>
<div class="main">
<header class="header limit" role="banner">
<a href="#" id="list-item" ng-click="showTodoList()" class="icon-list icon"></a>
</header>
<main role="main" class="limit ">
<header class="header-content">
<p>Push the button and say something...</p>
</header>
<button id="start-speech" ng-click="startRecord()" ng-class="getClassRecordButton()"></button>
<textarea id="speeched-text" ng-model="todoContent" rows="2"></textarea>
<button id="save-note" class="btn-confirm" ng-click="addTodo()">Save</button>
</main>
<footer role="contentinfo" class="footer limit">
<p>Developed in Chrome Apps Hackathon - 27/Apr/2013 - Brazil</p>
<a target="_blank" href="https://github.com/2013-Chrome-Hackathon-SP/app">Fork me on Github</a>
</footer>
</div>
<script src="public/javascript/angular.min.js"></script>
<script src="public/javascript/application.js"></script>
</body>
</html>