OLD | NEW |
1 <div id="gc-footer"> | 1 <div id="gc-footer"> |
2 <div class="text"> | 2 <div class="text"> |
3 <p> | 3 <p> |
4 Except as otherwise <a href="http://code.google.com/policies.html#restrict
ions">noted</a>, | 4 Except as otherwise <a href="http://code.google.com/policies.html#restrict
ions">noted</a>, |
5 the content of this page is licensed under the <a rel="license" href="http
://creativecommons.org/licenses/by/3.0/">Creative Commons | 5 the content of this page is licensed under the <a rel="license" href="http
://creativecommons.org/licenses/by/3.0/">Creative Commons |
6 Attribution 3.0 License</a>, and code samples are licensed under the | 6 Attribution 3.0 License</a>, and code samples are licensed under the |
7 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD
License</a>. | 7 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD
License</a>. |
8 </p> | 8 </p> |
9 <p> | 9 <p> |
10 ©2012 Google | 10 ©2012 Google |
11 </p> | 11 </p> |
| 12 <script> |
| 13 window.bootstrap = { |
| 14 {{?is_apps}} |
| 15 api_names: {{*api_list.apps.chrome}}.concat( |
| 16 {{*api_list.apps.experimental}}), |
| 17 branchInfo: {{*branchInfo}} |
| 18 {{:is_apps}} |
| 19 api_names: {{*api_list.extensions.chrome}}.concat( |
| 20 {{*api_list.extensions.experimental}}), |
| 21 branchInfo: {{*branchInfo}} |
| 22 {{/is_apps}} |
| 23 }; |
| 24 </script> |
12 <script src="{{static}}/js/branch.js" type="text/javascript"></script> | 25 <script src="{{static}}/js/branch.js" type="text/javascript"></script> |
13 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> | 26 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> |
14 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> | 27 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> |
15 <script src="{{static}}/js/filter.js" type="text/javascript"></script> | 28 <script src="{{static}}/js/filter.js" type="text/javascript"></script> |
16 <script> | 29 <script> |
17 (function() { | 30 (function() { |
18 // Auto syntax highlight all pre tags. | 31 // Auto syntax highlight all pre tags. |
19 var preElements = document.getElementsByTagName('pre'); | 32 var preElements = document.getElementsByTagName('pre'); |
20 for (var i = 0; i < preElements.length; i++) | 33 for (var i = 0; i < preElements.length; i++) |
21 preElements[i].classList.add('prettyprint'); | 34 preElements[i].classList.add('prettyprint'); |
(...skipping 24 matching lines...) Expand all Loading... |
46 google.setOnLoadCallback(function() { | 59 google.setOnLoadCallback(function() { |
47 var customSearchOptions = {}; | 60 var customSearchOptions = {}; |
48 var customSearchControl = new google.search.CustomSearchControl( | 61 var customSearchControl = new google.search.CustomSearchControl( |
49 '007539736102453916271:q8_wzmg0804', customSearchOptions); | 62 '007539736102453916271:q8_wzmg0804', customSearchOptions); |
50 customSearchControl.setResultSetSize( | 63 customSearchControl.setResultSetSize( |
51 google.search.Search.FILTERED_CSE_RESULTSET); | 64 google.search.Search.FILTERED_CSE_RESULTSET); |
52 customSearchControl.draw('cse'); | 65 customSearchControl.draw('cse'); |
53 }, true); | 66 }, true); |
54 </script> | 67 </script> |
55 <script type="text/javascript">google.load("elements", "1", {packages: "tran
sliteration"});</script> | 68 <script type="text/javascript">google.load("elements", "1", {packages: "tran
sliteration"});</script> |
56 <script> | |
57 window.bootstrap = { | |
58 api_names: {{*api_list.chrome}}.concat({{*api_list.experimental}}), | |
59 branchInfo: {{*branchInfo}} | |
60 }; | |
61 </script> | |
62 </div> | 69 </div> |
63 </div> | 70 </div> |
OLD | NEW |