-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (21 loc) · 822 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Collaborative Text Editing</title>
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="/css/app.css" />
<script src="/lib/angular.min.js"></script>
<script src="/lib/caret.js"></script>
<script src="/js/app.js"></script>
</head>
<body ng-app="app">
<div ng-controller="main">
<ul>
<li><h1 style="margin:45px;">Collaborative Text Editing</h1></li>
<li style="float:right"><h3 ng-bind="shareLink" style="margin:45px;"></h3></li>
</ul>
<textarea ng-model="document" ng-keypress="documentEdit($event)" ng-keyup="documentEdit($event)" eb-caret="cursor"></textarea>
</div>
</body>
</html>