This repository has been archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
35 lines (31 loc) · 1.5 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Word to Markdown - A Word add-in</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<link href="css/app.css" rel="stylesheet" />
</head>
<body id="container">
<div class="main-view" ui-view></div>
<!-- Vendor JS -->
<script src="vendor/promise-polyfill/Promise.js"></script>
<script src="vendor/upndown/lib/upndown.bundle.min.js"></script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/angular/angular.min.js"></script>
<script src="vendor/angular-animate/angular-animate.min.js"></script>
<script src="vendor/angular-ui-router/release/angular-ui-router.js"></script>
<script src="vendor/angular-sanitize/angular-sanitize.min.js"></script>
<script src="vendor/angular-translate/angular-translate.min.js"></script>
<script src="vendor/office-ui-fabric/dist/js/jquery.fabric.min.js"></script>
<script src="//appsforoffice.microsoft.com/lib/1.1/hosted/Office.js"></script>
<!-- App JS -->
<script src="app/app.js"></script>
<script src="app/templates.js"></script>
<!-- weinre debug script -->
<!-- uncomment the below line and set the correct target script URL -->
<!-- For more details on this, see: http://tomseldon.co.uk/blog/debugging-office-365-add-ins-baby-steps-in-the-right-direction/ -->
<!--<script src="https://43578465.ngrok.io/target/target-script-min.js#anonymous"></script>-->
</body>
</html>