UNPKG

2.44 kBHTMLView Raw
1<!doctype html>
2
3<!--
4 Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23-->
24
25<html>
26<head>
27 <meta charset="utf-8">
28 <title></title>
29
30 <!-- CSS/LESS -->
31
32 <!-- NOTE: All scripts must be external for Chrome App support: http://developer.chrome.com/apps/app_csp.html -->
33
34 <!-- Warn about failed cross origin requests in Chrome -->
35 <script type="application/javascript" src="xorigin.js"></script>
36
37 <link rel="stylesheet" type="text/css" href="thirdparty/CodeMirror2/lib/codemirror.css">
38
39
40 <link rel="stylesheet" type="text/css" href="styles/brackets.min.css">
41
42
43 <!-- JavaScript -->
44
45 <!-- Pre-load third party scripts that cannot be async loaded. -->
46 <script src="thirdparty/thirdparty.min.js"></script>
47</head>
48<body>
49
50 <!-- HTML content is dynamically loaded and rendered by brackets.js.
51 Any modules that depend on or modify HTML during load should
52 require the "utils/AppInit" module and install a callback for
53 "htmlReady" (e.g. AppInit.htmlReady(handler)) before touching the DOM.
54 -->
55
56 <!-- All other scripts are loaded through require. -->
57
58 <script src="thirdparty/requirejs/require.js" data-main="main"></script>
59 <!-- endbuild -->
60
61 <!-- Verify that all dependencies are loaded. -->
62 <script src="dependencies.js"></script>
63
64</body>
65</html>