|
1 |
| -<!-- |
2 |
| -@license |
3 |
| -Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
4 |
| -This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
5 |
| -The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
6 |
| -The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
7 |
| -Code distributed by Google as part of the polymer project is also |
8 |
| -subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
9 |
| ---> |
10 |
| - |
11 | 1 | <!doctype html>
|
12 | 2 | <html lang="en">
|
13 |
| - <head> |
14 |
| - <meta charset="utf-8"> |
15 |
| - <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> |
16 |
| - |
17 |
| - <title>Youtube-dl GUI</title> |
18 |
| - <meta name="description" content="Youtube-dl GUI description"> |
19 |
| - |
20 |
| - <link rel="icon" href="/images/favicon.ico"> |
21 |
| - |
22 |
| - <!-- See https://goo.gl/OOhYW5 --> |
23 |
| - <link rel="manifest" href="/manifest.json"> |
24 |
| - |
25 |
| - <!-- See https://goo.gl/qRE0vM --> |
26 |
| - <meta name="theme-color" content="#3f51b5"> |
27 |
| - |
28 |
| - <!-- Add to homescreen for Chrome on Android. Fallback for manifest.json --> |
29 |
| - <meta name="mobile-web-app-capable" content="yes"> |
30 |
| - <meta name="application-name" content="Youtube-dl GUI"> |
31 |
| - |
32 |
| - <!-- Add to homescreen for Safari on iOS --> |
33 |
| - <meta name="apple-mobile-web-app-capable" content="yes"> |
34 |
| - <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
35 |
| - <meta name="apple-mobile-web-app-title" content="Youtube-dl GUI"> |
36 |
| - |
37 |
| - <!-- Homescreen icons --> |
38 |
| - <link rel="apple-touch-icon" href="/images/manifest/icon-48x48.png"> |
39 |
| - <link rel="apple-touch-icon" sizes="72x72" href="/images/manifest/icon-72x72.png"> |
40 |
| - <link rel="apple-touch-icon" sizes="96x96" href="/images/manifest/icon-96x96.png"> |
41 |
| - <link rel="apple-touch-icon" sizes="144x144" href="/images/manifest/icon-144x144.png"> |
42 |
| - <link rel="apple-touch-icon" sizes="192x192" href="/images/manifest/icon-192x192.png"> |
43 |
| - |
44 |
| - <!-- Tile icon for Windows 8 (144x144 + tile color) --> |
45 |
| - <meta name="msapplication-TileImage" content="/images/manifest/icon-144x144.png"> |
46 |
| - <meta name="msapplication-TileColor" content="#3f51b5"> |
47 |
| - <meta name="msapplication-tap-highlight" content="no"> |
48 |
| - |
49 |
| - <script> |
50 |
| - // Setup Polymer options |
51 |
| - window.Polymer = { |
52 |
| - dom: 'shadow', |
53 |
| - lazyRegister: true |
54 |
| - }; |
55 |
| - |
56 |
| - // Load webcomponentsjs polyfill if browser does not support native Web Components |
57 |
| - (function() { |
58 |
| - 'use strict'; |
59 |
| - |
60 |
| - var onload = function() { |
61 |
| - // For native Imports, manually fire WebComponentsReady so user code |
62 |
| - // can use the same code path for native and polyfill'd imports. |
63 |
| - if (!window.HTMLImports) { |
64 |
| - document.dispatchEvent( |
65 |
| - new CustomEvent('WebComponentsReady', {bubbles: true}) |
66 |
| - ); |
67 |
| - } |
68 |
| - }; |
69 |
| - |
70 |
| - var webComponentsSupported = ( |
71 |
| - 'registerElement' in document |
72 |
| - && 'import' in document.createElement('link') |
73 |
| - && 'content' in document.createElement('template') |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> |
| 6 | + <title>Youtube-dl GUI</title> |
| 7 | + <meta name="description" content="Youtube-dl GUI description"> |
| 8 | + <link rel="icon" href="/images/favicon.ico"> |
| 9 | + |
| 10 | + <script> |
| 11 | + // Setup Polymer options |
| 12 | + window.Polymer = { |
| 13 | + dom: 'shadow', |
| 14 | + lazyRegister: true |
| 15 | + }; |
| 16 | + |
| 17 | + // Load webcomponentsjs polyfill if browser does not support native Web Components |
| 18 | + (function() { |
| 19 | + 'use strict'; |
| 20 | + |
| 21 | + var onload = function() { |
| 22 | + // For native Imports, manually fire WebComponentsReady so user code |
| 23 | + // can use the same code path for native and polyfill'd imports. |
| 24 | + if (!window.HTMLImports) { |
| 25 | + document.dispatchEvent( |
| 26 | + new CustomEvent('WebComponentsReady', {bubbles: true}) |
74 | 27 | );
|
75 |
| - |
76 |
| - if (!webComponentsSupported) { |
77 |
| - var script = document.createElement('script'); |
78 |
| - script.async = true; |
79 |
| - script.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js'; |
80 |
| - script.onload = onload; |
81 |
| - document.head.appendChild(script); |
82 |
| - } else { |
83 |
| - onload(); |
84 |
| - } |
85 |
| - })(); |
86 |
| - |
87 |
| - // Load pre-caching Service Worker |
88 |
| - if ('serviceWorker' in navigator) { |
89 |
| - window.addEventListener('load', function() { |
90 |
| - navigator.serviceWorker.register('/service-worker.js'); |
91 |
| - }); |
92 |
| - } |
93 |
| - </script> |
94 |
| - |
95 |
| - <link rel="import" href="/src/youtube-dl.html"> |
96 |
| - |
97 |
| - <style> |
98 |
| - body { |
99 |
| - margin: 0; |
100 |
| - font-family: 'Roboto', 'Noto', sans-serif; |
101 |
| - line-height: 1.5; |
102 |
| - min-height: 100vh; |
103 |
| - background-color: #eeeeee; |
104 | 28 | }
|
105 |
| - </style> |
106 |
| - </head> |
107 |
| - <body> |
108 |
| - <youtube-dl></youtube-dl> |
109 |
| - </body> |
| 29 | + }; |
| 30 | + |
| 31 | + var webComponentsSupported = ( |
| 32 | + 'registerElement' in document |
| 33 | + && 'import' in document.createElement('link') |
| 34 | + && 'content' in document.createElement('template') |
| 35 | + ); |
| 36 | + |
| 37 | + if (!webComponentsSupported) { |
| 38 | + var script = document.createElement('script'); |
| 39 | + script.async = true; |
| 40 | + script.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js'; |
| 41 | + script.onload = onload; |
| 42 | + document.head.appendChild(script); |
| 43 | + } else { |
| 44 | + onload(); |
| 45 | + } |
| 46 | + })(); |
| 47 | + |
| 48 | + // Load pre-caching Service Worker |
| 49 | + if ('serviceWorker' in navigator) { |
| 50 | + window.addEventListener('load', function() { |
| 51 | + navigator.serviceWorker.register('/service-worker.js'); |
| 52 | + }); |
| 53 | + } |
| 54 | + </script> |
| 55 | + |
| 56 | + <link rel="import" href="/src/youtube-dl.html"> |
| 57 | + |
| 58 | + <style> |
| 59 | + body { |
| 60 | + margin: 0; |
| 61 | + font-family: 'Roboto', 'Noto', sans-serif; |
| 62 | + line-height: 1.5; |
| 63 | + min-height: 100vh; |
| 64 | + background-color: #eeeeee; |
| 65 | + } |
| 66 | + </style> |
| 67 | +</head> |
| 68 | +<body> |
| 69 | + <youtube-dl></youtube-dl> |
| 70 | +</body> |
110 | 71 | </html>
|
0 commit comments