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

Side by Side Diff: chrome/common/extensions/docs/template/api_template.html

Issue 3117029: Several small extensions docs system fixes... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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
« no previous file with comments | « chrome/common/extensions/docs/tabs.html ('k') | chrome/common/extensions/docs/themes.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="gc-container" class="labs"> 1 <div id="gc-container" class="labs">
2 <div id="devModeWarning"> 2 <div id="devModeWarning">
3 You are viewing extension docs in chrome via the 'file:' scheme: are you expecting to see local changes when you refresh? You'll need run chrome with -- allow-file-access-from-files. 3 You are viewing extension docs in chrome via the 'file:' scheme: are you expecting to see local changes when you refresh? You'll need run chrome with -- allow-file-access-from-files.
4 </div> 4 </div>
5 <!-- SUBTEMPLATES: DO NOT MOVE FROM THIS LOCATION --> 5 <!-- SUBTEMPLATES: DO NOT MOVE FROM THIS LOCATION -->
6 <!-- In particular, sub-templates that recurse, must be used by allowing 6 <!-- In particular, sub-templates that recurse, must be used by allowing
7 jstemplate to make a copy of the template in this section which 7 jstemplate to make a copy of the template in this section which
8 are not operated on by way of the jsskip="true" --> 8 are not operated on by way of the jsskip="true" -->
9 <div jsskip="true" style="display:none"> 9 <div jsskip="true" style="display:none">
10 10
(...skipping 22 matching lines...) Expand all
33 </span> 33 </span>
34 ) 34 )
35 </div> 35 </div>
36 36
37 </em> 37 </em>
38 </dt> 38 </dt>
39 <dd class="todo" jsdisplay="!$this.description"> 39 <dd class="todo" jsdisplay="!$this.description">
40 Undocumented. 40 Undocumented.
41 </dd> 41 </dd>
42 <dd jsdisplay="$this.description" 42 <dd jsdisplay="$this.description"
43 jsvalues=".innerHTML:$this.description"> 43 jsvalues=".innerHTML:substituteTypeRefs($this.description)">
44 Description of this parameter from the json schema. 44 Description of this parameter from the json schema.
45 </dd> 45 </dd>
46 <dd jsdisplay="$this.min_version"> 46 <dd jsdisplay="$this.min_version">
47 This parameter was added in version 47 This parameter was added in version
48 <b><span jscontent="$this.min_version"></span></b>. 48 <b><span jscontent="$this.min_version"></span></b>.
49 You must omit this parameter in earlier versions, 49 You must omit this parameter in earlier versions,
50 and you may omit it in any version. If you require this 50 and you may omit it in any version. If you require this
51 parameter, the manifest key 51 parameter, the manifest key
52 <a href="manifest.html#minimum_chrome_version">minimum_chrome_versio n</a> 52 <a href="manifest.html#minimum_chrome_version">minimum_chrome_versio n</a>
53 can ensure that your extension won't be run in an earlier browser ve rsion. 53 can ensure that your extension won't be run in an earlier browser ve rsion.
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 <p jsdisplay="!$this.optional"> 359 <p jsdisplay="!$this.optional">
360 The callback <em>parameter</em> should specify a function 360 The callback <em>parameter</em> should specify a function
361 that looks like this: 361 that looks like this:
362 </p> 362 </p>
363 <p jsdisplay="$this.optional"> 363 <p jsdisplay="$this.optional">
364 If you specify the <em>callback</em> parameter, it should 364 If you specify the <em>callback</em> parameter, it should
365 specify a function that looks like this: 365 specify a function that looks like this:
366 </p> 366 </p>
367 367
368 <!-- Note: intentionally longer 80 columns --> 368 <!-- Note: intentionally longer 80 columns -->
369 <pre>function(<span jscontent="getSignatureString(parameters)" >Type param1, Type param2</span>) <span class="subdued">{...}</span>);</pre> 369 <pre>function(<span jscontent="getSignatureString(parameters)" >Type param1, Type param2</span>) <span class="subdued">{...}</span>;</pre>
370 <dl> 370 <dl>
371 <div jsselect="parameters"> 371 <div jsselect="parameters">
372 <div transclude="valueTemplate"> 372 <div transclude="valueTemplate">
373 </div> 373 </div>
374 </div> 374 </div>
375 </dl> 375 </dl>
376 </div> 376 </div>
377 </div> 377 </div>
378 378
379 <!-- MIN_VERSION --> 379 <!-- MIN_VERSION -->
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 _uanchor=1; 478 _uanchor=1;
479 _uff=0; 479 _uff=0;
480 urchinTracker(); 480 urchinTracker();
481 } 481 }
482 catch(e) {/* urchinTracker not available. */} 482 catch(e) {/* urchinTracker not available. */}
483 </script> 483 </script>
484 <!-- end analytics --> 484 <!-- end analytics -->
485 </div> 485 </div>
486 </div> <!-- /gc-footer --> 486 </div> <!-- /gc-footer -->
487 </div> <!-- /gc-container --> 487 </div> <!-- /gc-container -->
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/tabs.html ('k') | chrome/common/extensions/docs/themes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698