| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,74 @@ | |||
| 1 | + <!DOCTYPE html> | ||
| 2 | + <html> | ||
| 3 | + | ||
| 4 | + <head> | ||
| 5 | + <meta charset='utf-8'> | ||
| 6 | + <meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||
| 7 | + <meta name="description" content="API : Documenting Dota 2 API's"> | ||
| 8 | + | ||
| 9 | + <link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css"> | ||
| 10 | + | ||
| 11 | + <title>API</title> | ||
| 12 | + </head> | ||
| 13 | + | ||
| 14 | + <body> | ||
| 15 | + | ||
| 16 | + <!-- HEADER --> | ||
| 17 | + <div id="header_wrap" class="outer"> | ||
| 18 | + <header class="inner"> | ||
| 19 | + <a id="forkme_banner" href="https://github.com/ModDota/API">View on GitHub</a> | ||
| 20 | + | ||
| 21 | + <h1 id="project_title">API</h1> | ||
| 22 | + <h2 id="project_tagline">Documenting Dota 2 API's</h2> | ||
| 23 | + | ||
| 24 | + <section id="downloads"> | ||
| 25 | + <a class="zip_download_link" href="https://github.com/ModDota/API/zipball/master">Download this project as a .zip file</a> | ||
| 26 | + <a class="tar_download_link" href="https://github.com/ModDota/API/tarball/master">Download this project as a tar.gz file</a> | ||
| 27 | + </section> | ||
| 28 | + </header> | ||
| 29 | + </div> | ||
| 30 | + | ||
| 31 | + <!-- MAIN CONTENT --> | ||
| 32 | + <div id="main_content_wrap" class="outer"> | ||
| 33 | + <section id="main_content" class="inner"> | ||
| 34 | + <h1> | ||
| 35 | + <a id="api" class="anchor" href="#api" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>API</h1> | ||
| 36 | + | ||
| 37 | + <h2> | ||
| 38 | + <a id="file-structure" class="anchor" href="#file-structure" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>File Structure</h2> | ||
| 39 | + | ||
| 40 | + <h3> | ||
| 41 | + <a id="dotadts" class="anchor" href="#dotadts" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>dota.d.ts</h3> | ||
| 42 | + | ||
| 43 | + <p>Contains all the javascript API functions to do intellisense</p> | ||
| 44 | + | ||
| 45 | + <h3> | ||
| 46 | + <a id="dota_enumsdts" class="anchor" href="#dota_enumsdts" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>dota_enums.d.ts</h3> | ||
| 47 | + | ||
| 48 | + <p>Contains all the constants / enums that exist in the global panorama scope</p> | ||
| 49 | + | ||
| 50 | + <h3> | ||
| 51 | + <a id="dota_panelsdts" class="anchor" href="#dota_panelsdts" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>dota_panels.d.ts</h3> | ||
| 52 | + | ||
| 53 | + <p>Contains all the Panel types (Panel, Button, etc) and their associated properties</p> | ||
| 54 | + | ||
| 55 | + <h3> | ||
| 56 | + <a id="gen" class="anchor" href="#gen" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a><code>gen/</code> | ||
| 57 | + </h3> | ||
| 58 | + | ||
| 59 | + <p>This folder contains all the scripts to help automate this repository</p> | ||
| 60 | + </section> | ||
| 61 | + </div> | ||
| 62 | + | ||
| 63 | + <!-- FOOTER --> | ||
| 64 | + <div id="footer_wrap" class="outer"> | ||
| 65 | + <footer class="inner"> | ||
| 66 | + <p class="copyright">API maintained by <a href="https://github.com/ModDota">ModDota</a></p> | ||
| 67 | + <p>Published with <a href="https://pages.github.com">GitHub Pages</a></p> | ||
| 68 | + </footer> | ||
| 69 | + </div> | ||
| 70 | + | ||
| 71 | + | ||
| 72 | + | ||
| 73 | + </body> | ||
| 74 | + </html> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1 @@ | |||
| 1 | + console.log('This would be the main JS file.'); | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,6 @@ | |||
| 1 | + { | ||
| 2 | + "name": "API", | ||
| 3 | + "tagline": "Documenting Dota 2 API's", | ||
| 4 | + "body": "# API\r\n\r\n##File Structure\r\n### dota.d.ts\r\nContains all the javascript API functions to do intellisense\r\n### dota_enums.d.ts\r\nContains all the constants / enums that exist in the global panorama scope\r\n###dota_panels.d.ts\r\nContains all the Panel types (Panel, Button, etc) and their associated properties\r\n###`gen/`\r\nThis folder contains all the scripts to help automate this repository", | ||
| 5 | + "note": "Don't delete this file! It's used internally to help with page regeneration." | ||
| 6 | + } | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,124 @@ | |||
| 1 | + /* | ||
| 2 | + The MIT License (MIT) | ||
| 3 | + | ||
| 4 | + Copyright (c) 2016 GitHub, Inc. | ||
| 5 | + | ||
| 6 | + Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 7 | + of this software and associated documentation files (the "Software"), to deal | ||
| 8 | + in the Software without restriction, including without limitation the rights | ||
| 9 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 10 | + copies of the Software, and to permit persons to whom the Software is | ||
| 11 | + furnished to do so, subject to the following conditions: | ||
| 12 | + | ||
| 13 | + The above copyright notice and this permission notice shall be included in all | ||
| 14 | + copies or substantial portions of the Software. | ||
| 15 | + | ||
| 16 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 17 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 18 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 19 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 20 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 21 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| 22 | + SOFTWARE. | ||
| 23 | + | ||
| 24 | + */ | ||
| 25 | + | ||
| 26 | + .pl-c /* comment */ { | ||
| 27 | + color: #969896; | ||
| 28 | + } | ||
| 29 | + | ||
| 30 | + .pl-c1 /* constant, variable.other.constant, support, meta.property-name, support.constant, support.variable, meta.module-reference, markup.raw, meta.diff.header */, | ||
| 31 | + .pl-s .pl-v /* string variable */ { | ||
| 32 | + color: #0086b3; | ||
| 33 | + } | ||
| 34 | + | ||
| 35 | + .pl-e /* entity */, | ||
| 36 | + .pl-en /* entity.name */ { | ||
| 37 | + color: #795da3; | ||
| 38 | + } | ||
| 39 | + | ||
| 40 | + .pl-smi /* variable.parameter.function, storage.modifier.package, storage.modifier.import, storage.type.java, variable.other */, | ||
| 41 | + .pl-s .pl-s1 /* string source */ { | ||
| 42 | + color: #333; | ||
| 43 | + } | ||
| 44 | + | ||
| 45 | + .pl-ent /* entity.name.tag */ { | ||
| 46 | + color: #63a35c; | ||
| 47 | + } | ||
| 48 | + | ||
| 49 | + .pl-k /* keyword, storage, storage.type */ { | ||
| 50 | + color: #a71d5d; | ||
| 51 | + } | ||
| 52 | + | ||
| 53 | + .pl-s /* string */, | ||
| 54 | + .pl-pds /* punctuation.definition.string, string.regexp.character-class */, | ||
| 55 | + .pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, | ||
| 56 | + .pl-sr /* string.regexp */, | ||
| 57 | + .pl-sr .pl-cce /* string.regexp constant.character.escape */, | ||
| 58 | + .pl-sr .pl-sre /* string.regexp source.ruby.embedded */, | ||
| 59 | + .pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */ { | ||
| 60 | + color: #183691; | ||
| 61 | + } | ||
| 62 | + | ||
| 63 | + .pl-v /* variable */ { | ||
| 64 | + color: #ed6a43; | ||
| 65 | + } | ||
| 66 | + | ||
| 67 | + .pl-id /* invalid.deprecated */ { | ||
| 68 | + color: #b52a1d; | ||
| 69 | + } | ||
| 70 | + | ||
| 71 | + .pl-ii /* invalid.illegal */ { | ||
| 72 | + color: #f8f8f8; | ||
| 73 | + background-color: #b52a1d; | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + .pl-sr .pl-cce /* string.regexp constant.character.escape */ { | ||
| 77 | + font-weight: bold; | ||
| 78 | + color: #63a35c; | ||
| 79 | + } | ||
| 80 | + | ||
| 81 | + .pl-ml /* markup.list */ { | ||
| 82 | + color: #693a17; | ||
| 83 | + } | ||
| 84 | + | ||
| 85 | + .pl-mh /* markup.heading */, | ||
| 86 | + .pl-mh .pl-en /* markup.heading entity.name */, | ||
| 87 | + .pl-ms /* meta.separator */ { | ||
| 88 | + font-weight: bold; | ||
| 89 | + color: #1d3e81; | ||
| 90 | + } | ||
| 91 | + | ||
| 92 | + .pl-mq /* markup.quote */ { | ||
| 93 | + color: #008080; | ||
| 94 | + } | ||
| 95 | + | ||
| 96 | + .pl-mi /* markup.italic */ { | ||
| 97 | + font-style: italic; | ||
| 98 | + color: #333; | ||
| 99 | + } | ||
| 100 | + | ||
| 101 | + .pl-mb /* markup.bold */ { | ||
| 102 | + font-weight: bold; | ||
| 103 | + color: #333; | ||
| 104 | + } | ||
| 105 | + | ||
| 106 | + .pl-md /* markup.deleted, meta.diff.header.from-file */ { | ||
| 107 | + color: #bd2c00; | ||
| 108 | + background-color: #ffecec; | ||
| 109 | + } | ||
| 110 | + | ||
| 111 | + .pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { | ||
| 112 | + color: #55a532; | ||
| 113 | + background-color: #eaffea; | ||
| 114 | + } | ||
| 115 | + | ||
| 116 | + .pl-mdr /* meta.diff.range */ { | ||
| 117 | + font-weight: bold; | ||
| 118 | + color: #795da3; | ||
| 119 | + } | ||
| 120 | + | ||
| 121 | + .pl-mo /* meta.output */ { | ||
| 122 | + color: #1d3e81; | ||
| 123 | + } | ||
| 124 | + | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments