Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: chrome/common/extensions/docs/server2/templates/private/footer.html

Issue 10825067: Extensions Docs Server: Apps samples page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: less is_apps and fixes Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 {{:is_apps}}
18 api_names: {{*api_list.extensions.chrome}}.concat(
19 {{*api_list.extensions.experimental}}),
20 {{/is_apps}}
21 branchInfo: {{*branchInfo}}
22 };
23 </script>
24 <script src="{{static}}/js/branch.js" type="text/javascript"></script> 12 <script src="{{static}}/js/branch.js" type="text/javascript"></script>
25 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> 13 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script>
26 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> 14 <script src="{{static}}/js/prettify.js" type="text/javascript"></script>
27 <script src="{{static}}/js/filter.js" type="text/javascript"></script> 15 <script src="{{static}}/js/filter.js" type="text/javascript"></script>
28 <script> 16 <script>
29 (function() { 17 (function() {
30 // Auto syntax highlight all pre tags. 18 // Auto syntax highlight all pre tags.
31 var preElements = document.getElementsByTagName('pre'); 19 var preElements = document.getElementsByTagName('pre');
32 for (var i = 0; i < preElements.length; i++) 20 for (var i = 0; i < preElements.length; i++)
33 preElements[i].classList.add('prettyprint'); 21 preElements[i].classList.add('prettyprint');
(...skipping 26 matching lines...) Expand all
60 var customSearchControl = new google.search.CustomSearchControl( 48 var customSearchControl = new google.search.CustomSearchControl(
61 '007539736102453916271:q8_wzmg0804', customSearchOptions); 49 '007539736102453916271:q8_wzmg0804', customSearchOptions);
62 customSearchControl.setResultSetSize( 50 customSearchControl.setResultSetSize(
63 google.search.Search.FILTERED_CSE_RESULTSET); 51 google.search.Search.FILTERED_CSE_RESULTSET);
64 customSearchControl.draw('cse'); 52 customSearchControl.draw('cse');
65 }, true); 53 }, true);
66 </script> 54 </script>
67 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script> 55 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script>
68 </div> 56 </div>
69 </div> 57 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698