| 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 } |
| 11 function notifyDidFinishLoading() { | 11 function notifyDidFinishLoading() { |
| 12 if (plugin.didFinishLoading) | 12 if (plugin.didFinishLoading) |
| 13 plugin.didFinishLoading(); | 13 plugin.didFinishLoading(); |
| 14 |
| 15 if (plugin.didFinishIconRepositionForTesting) |
| 16 plugin.didFinishIconRepositionForTesting(); |
| 14 } | 17 } |
| 15 </script> | 18 </script> |
| 16 </if> | 19 </if> |
| 17 <if expr="is_android"> | 20 <if expr="is_android"> |
| 18 <script> | 21 <script> |
| 19 function notifyDidFinishLoading() {} | 22 function notifyDidFinishLoading() {} |
| 20 </script> | 23 </script> |
| 21 </if> | 24 </if> |
| 22 <link rel="stylesheet" href="plugin_placeholders.css"></link> | 25 <link rel="stylesheet" href="plugin_placeholders.css"></link> |
| 23 <style> | 26 <style> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 41 <img id="plugin_icon" src="plugin_blocked_android.png"> | 44 <img id="plugin_icon" src="plugin_blocked_android.png"> |
| 42 </if> | 45 </if> |
| 43 <h1 id="message" i18n-content="message"></h1> | 46 <h1 id="message" i18n-content="message"></h1> |
| 44 </div> | 47 </div> |
| 45 <div id="close" i18n-values="title:hide;data-plugin-type:pluginType" | 48 <div id="close" i18n-values="title:hide;data-plugin-type:pluginType" |
| 46 onclick="plugin.hide();"> | 49 onclick="plugin.hide();"> |
| 47 </div> | 50 </div> |
| 48 </div> | 51 </div> |
| 49 </body> | 52 </body> |
| 50 </html> | 53 </html> |
| OLD | NEW |