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

Side by Side Diff: chrome/common/extensions/docs/server2/templates/public/samples.html

Issue 10824003: addEventListener stuff. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « chrome/common/extensions/docs/server2/static/js/samples.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 {{+partials.header_head}} 4 {{+partials.header_head}}
5 <link href="{{static}}/css/samples.css" rel="stylesheet" type="text/css"> 5 <link href="{{static}}/css/samples.css" rel="stylesheet" type="text/css">
6 </head> 6 </head>
7 <body> 7 <body>
8 {{+partials.header_body}} 8 {{+partials.header_body}}
9 <div id="gc-container"> 9 <div id="gc-container">
10 {{+partials.sidenav}} 10 {{+partials.sidenav}}
11 <div id="gc-pagecontent"> 11 <div id="gc-pagecontent">
12 <h1 class="page_title">Samples</h1> 12 <h1 class="page_title">Samples</h1>
13 <div id="controls"> 13 <div id="controls">
14 <table class="controlbox"> 14 <table class="controlbox">
15 <tr> 15 <tr>
16 <td class="label">Filter by keyword:</td> 16 <td class="label">Filter by keyword:</td>
17 <td><input autofocus="" type="search" id="search_input" placeholde r="Type to search"></td> 17 <td><input autofocus type="search" id="search_input" placeholder=" Type to search"></td>
18 </tr> 18 </tr>
19 <tr> 19 <tr>
20 <td class="label">Filter by API:</td> 20 <td class="label">Filter by API:</td>
21 <td> 21 <td>
22 {{#api_list.chrome}} 22 <div id="api_filter_items">
23 <span><a class="api_filter_item" href="javascript:void(0)">{{@ }}</a> | </span> 23 {{#api_list.chrome}}
24 {{/}} 24 <span><a href="javascript:void(0)">{{@}}</a> | </span>
25 {{/}}
26 </div>
25 </td> 27 </td>
26 </tr> 28 </tr>
27 </table> 29 </table>
28 </div> 30 </div>
29 {{#samples.samples}} 31 {{#samples.samples}}
30 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}"> 32 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}">
31 <img class="icon" src="{{icon}}"> 33 <img class="icon" src="{{icon}}">
32 <h2><a href="{{path}}.zip">{{name}}</a></h2> 34 <h2><a href="{{path}}.zip">{{name}}</a></h2>
33 {{description}} 35 {{description}}
34 <div> 36 <div>
(...skipping 13 matching lines...) Expand all
48 </ul> 50 </ul>
49 </div> 51 </div>
50 </div> 52 </div>
51 {{/samples.samples}} 53 {{/samples.samples}}
52 </div> 54 </div>
53 </div> 55 </div>
54 </body> 56 </body>
55 {{+partials.footer}} 57 {{+partials.footer}}
56 <script src="{{static}}/js/samples.js" type="text/javascript"></script> 58 <script src="{{static}}/js/samples.js" type="text/javascript"></script>
57 </html> 59 </html>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/static/js/samples.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698