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 <script> | 6 <script> |
6 function debug(msg) { | 7 function debug(msg) { |
7 document.getElementById('debug').textContent = msg; | 8 document.getElementById('debug').textContent = msg; |
8 } | 9 } |
9 function setMessage(msg) { | 10 function setMessage(msg) { |
10 document.getElementById('message').textContent = msg; | 11 document.getElementById('message').textContent = msg; |
11 } | 12 } |
12 function notifyDidFinishLoading() { | 13 function notifyDidFinishLoading() { |
13 if (plugin.didFinishLoading) | 14 if (plugin.didFinishLoading) |
14 plugin.didFinishLoading(); | 15 plugin.didFinishLoading(); |
(...skipping 20 matching lines...) Expand all Loading... |
35 <if expr="is_android"> | 36 <if expr="is_android"> |
36 <img id="plugin_icon" src="plugin_blocked_android.png"> | 37 <img id="plugin_icon" src="plugin_blocked_android.png"> |
37 </if> | 38 </if> |
38 <h1 id="message" i18n-content="message"></h1> | 39 <h1 id="message" i18n-content="message"></h1> |
39 <p id="debug"> </p> | 40 <p id="debug"> </p> |
40 </div> | 41 </div> |
41 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div> | 42 <div id="close" i18n-values="title:hide" onclick="plugin.hide();"></div> |
42 </div> | 43 </div> |
43 </body> | 44 </body> |
44 </html> | 45 </html> |
OLD | NEW |