Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README.md to document extra parameters #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,18 @@ Find out your latitude and longitude here:
<td><code>showInlineIcons</code></td>
<td>Whether to prefix wind and precipitation information with an icon. Only affects the <code>tiled</code> layout.<br><br><strong>Type</strong> <code>Boolean</code><br>Defaults to <code>true</code></td>
</tr>
<tr>
<td><code>mainIconSize</code></td>
<td>The current condition icon, overwriting the default CSS value. Use this instead of CSS to change the size of animated icons, as otherwise they will be pixalated.<br><br><strong>Type</strong> <code>Number</code><br>Defaults to <code>100</code></td>
</tr>
<tr>
<td><code>forecastTiledIconSize</code></td>
<td>The size of the forecast icons in the tiled layout. Use this instead of CSS to change the size of animated icons, as otherwise they will be pixalated. Only affects the <code>tiled</code> layout.<br><br><strong>Type</strong> <code>Number</code><br>Defaults to <code>70</code></td>
</tr>
<tr>
<td><code>forecastTableIconSize</code></td>
<td>The size of the forecast icons in the table layout. Use this instead of CSS to change the size of animated icons, as otherwise they will be pixalated. Only affects the <code>table</code> layout.<br><br><strong>Type</strong> <code>Number</code><br>Defaults to <code>30</code></td>
</tr>
<tr>
<td><code>forecastLayout</code></td>
<td>Can be set to <code>tiled</code> or <code>table</code>. How to display hourly and forecast information. See below for screenshot examples of each.<br><br><strong>Type</strong> <code>String</code><br>Defaults to <code>tiled</code></td>
Expand Down