-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
34 lines (32 loc) · 1010 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
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<link rel="import" href="developer-console.html">
<style>
html, body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<developer-console></developer-console>
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<!-- polyfills -->
<script>
(function() {
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
// platform is good!
} else {
// polyfill the platform!
var e = document.createElement('script');
e.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js';
document.body.appendChild(e);
}
})();
</script>
<!-- end - polyfills -->
</body>
</html>