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

Support responsive rich resource types #293

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
13 changes: 13 additions & 0 deletions www/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,21 @@
<dt><b><code>width</code></b> (required)</dt>
<dd>The width in pixels required to display the HTML.</dd>

<dt><b><code>min_width</code></b> (optional)</dt>
<dd>The minimum width in pixels required to display the HTML, if it's any lower the content will be cut off and not render properly.</dd>

<dt><b><code>max_width</code></b> (optional)</dt>
<dd>The maximum width in pixels to display the HTML without blank whitespace occuring.</dd>

<dt><b><code>height</code></b> (required)</dt>
<dd>The height in pixels required to display the HTML.</dd>

<dt><b><code>min_height</code></b> (optional)</dt>
<dd>The minimum height in pixels required to display the HTML, it it's any lower the content will be cut off and not render properly.</dd>

<dt><b><code>max_height</code></b> (optional)</dt>
<dd>The maximum height in pixels required to display the HTML without blank whitespace occuring.</dd>

</dl>

<p>Responses of this type must obey the <code>maxwidth</code> and <code>maxheight</code> request parameters.</p>
Expand Down