diff options
| author | 2022-03-14 23:05:47 +0100 | |
|---|---|---|
| committer | 2022-03-14 23:05:47 +0100 | |
| commit | bdf7e4d29d954c3d2c137948577b6872c3de4656 (patch) | |
| tree | aabf27a2321de6ca547ac3893b15946203e21662 /app/views/subscription | |
| parent | 6650d1d29ea5e6f895124afce9ed4a6e920a1ed8 (diff) | |
Improved: Show URL button (#4238)
* done
* fix extra.js
* click event
* URL input does not extend anymore
* fix
* improved the i18n key
* Update app/i18n/fr/gen.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/subscription')
| -rw-r--r-- | app/views/subscription/add.phtml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/subscription/add.phtml b/app/views/subscription/add.phtml index 78380a407..4de4e35ba 100644 --- a/app/views/subscription/add.phtml +++ b/app/views/subscription/add.phtml @@ -34,7 +34,10 @@ <div class="form-group"> <label class="group-name" for="url_rss"><?= _t('sub.feed.url') ?></label> <div class="group-controls"> - <input id="url_rss" name="url_rss" type="url" required="required" autocomplete="off" class="long" autofocus="autofocus" /> + <div class="stick"> + <input id="url_rss" name="url_rss" type="url" required="required" autocomplete="off" class="long" autofocus="autofocus" /> + <a class="btn open-url" target="_blank" rel="noreferrer" href="" data-input="url_rss" title="<?= _t('gen.action.open_url') ?>"><?= _i('link') ?></a> + </div> </div> </div> |
