OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <meta name="viewport" content="width=device-width, user-scalable=no"> | 5 <meta name="viewport" content="width=device-width, user-scalable=no"> |
6 <if expr="not is_android"> | 6 <if expr="not is_android"> |
7 <script> | 7 <script> |
8 function setMessage(msg) { | 8 function setMessage(msg) { |
9 document.getElementById('message').textContent = msg; | 9 document.getElementById('message').textContent = msg; |
10 } | 10 } |
(...skipping 10 matching lines...) Expand all Loading... |
21 <script> | 21 <script> |
22 function notifyDidFinishLoading() {} | 22 function notifyDidFinishLoading() {} |
23 </script> | 23 </script> |
24 </if> | 24 </if> |
25 <link rel="stylesheet" href="plugin_placeholders.css"></link> | 25 <link rel="stylesheet" href="plugin_placeholders.css"></link> |
26 </head> | 26 </head> |
27 <body id="t" onload="notifyDidFinishLoading();"> | 27 <body id="t" onload="notifyDidFinishLoading();"> |
28 <div i18n-values="title:name" id="outer"> | 28 <div i18n-values="title:name" id="outer"> |
29 <img class="icon" | 29 <img class="icon" |
30 src="../../../../ui/webui/resources/images/extension.svg"> | 30 src="../../../../ui/webui/resources/images/extension.svg"> |
31 <h1 id="message" i18n-content="message"></h1> | 31 <h1 id="message">$i18n{message}</h1> |
32 </div> | 32 </div> |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
OLD | NEW |