Skip to content

Commit 33eb010

Browse files
committed
Better stayles and more accurate API
1 parent 74c9320 commit 33eb010

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ <h4>Functions:</h4>
160160
{%each functions as function%}
161161
<ul class="functions inner-block">
162162
<li id="{{jsClassName}}/function/{{function.jsFunctionName}}">
163-
{%if function.isConstructorMethod%}
163+
{%if not function.isPrototypeMethod%}
164164
<strong class="cName">{{jsClassName}}.</strong><strong class="name">{{function.jsFunctionName}}</strong>
165165
<p>{{{ function.description }}}</p>
166166
<pre class="function language-javascript"><code>{{ jsClassName }}.{{ function.jsFunctionName }}({%each function.args|realArgs as arg%}{{arg.name|addComma arg i}}{%endeach%});</code></pre>

styles/api.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
color: #FFF;
33
list-style: none;
44
padding-left: 0px;
5-
width: 242px;
5+
width: 240px;
66
margin: 0;
77
position: fixed;
88
left: 0;
@@ -67,7 +67,6 @@
6767
position: relative;
6868
overflow-x: hidden;
6969
left: 225px;
70-
background: #303030;
7170
}
7271

7372
.api-content .inner-content {

styles/common.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ h1 {
1515
}
1616

1717
html {
18-
background-color: #3D3D3D;
18+
background-color: #383838;
1919
height: 100%;
2020
}
2121

0 commit comments

Comments
 (0)