diff options
| author | Spyrex <57133330+SpyrexDE@users.noreply.github.com> | 2022-04-06 00:42:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 01:42:15 +0300 |
| commit | 8e315fd24dfe4bdf4e7a9373c5be4e505614d865 (patch) | |
| tree | 3f9866035ab8eb90889281f63a45bcac2553f822 | |
| parent | 3d0c3ef86f6b253b2ab4cad0f8827f8c60dc3ea2 (diff) | |
| download | decky-loader-8e315fd24dfe4bdf4e7a9373c5be4e505614d865.tar.gz decky-loader-8e315fd24dfe4bdf4e7a9373c5be4e505614d865.zip | |
Disable scrolling for tile_view_iframe (#19)
| -rw-r--r-- | plugin_loader/templates/plugin_view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin_loader/templates/plugin_view.html b/plugin_loader/templates/plugin_view.html index 0619aebf..3c0cbcc5 100644 --- a/plugin_loader/templates/plugin_view.html +++ b/plugin_loader/templates/plugin_view.html @@ -26,7 +26,7 @@ <div onclick="location.href = '/plugins/load/{{ plugin.name }}'" class="basicdialog_Field_ugL9c basicdialog_WithChildrenBelow_1RjOd basicdialog_InlineWrapShiftsChildrenBelow_3a6QZ basicdialog_ExtraPaddingOnChildrenBelow_2-owv basicdialog_StandardPadding_1HrfN basicdialog_HighlightOnFocus_1xh2W Panel Focusable" style="--indent-level:0;"> - <iframe id="tile_view_iframe_{{ plugin.name }}" style="display:block; padding: 0; border: none; overflow: hidden;" + <iframe id="tile_view_iframe_{{ plugin.name }}" style="display:block; padding: 0; border: none;" scrolling="no" src="/plugins/load_tile/{{ plugin.name }}"></iframe> <script> (function() { @@ -64,4 +64,4 @@ {% endif %} {% endfor %} </div> -</div>
\ No newline at end of file +</div> |
