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/feed/add.phtml | |
| 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/feed/add.phtml')
| -rw-r--r-- | app/views/feed/add.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/feed/add.phtml b/app/views/feed/add.phtml index f5f582249..611d92f10 100644 --- a/app/views/feed/add.phtml +++ b/app/views/feed/add.phtml @@ -40,8 +40,8 @@ <label class="group-name" for="url"><?= _t('sub.feed.url') ?></label> <div class="group-controls"> <div class="stick"> - <input type="text" name="url_rss" id="url" class="extend" value="<?= $this->feed->url() ?>" /> - <a class="btn" target="_blank" rel="noreferrer" href="<?= $this->feed->url() ?>"><?= _i('link') ?></a> + <input type="text" name="url_rss" id="url" value="<?= $this->feed->url() ?>" /> + <a class="btn open-url" target="_blank" rel="noreferrer" href="<?= $this->feed->url() ?>" data-input="url" title="<?= _t('gen.action.open_url') ?>"><?= _i('link') ?></a> </div> <a class="btn" target="_blank" rel="noreferrer" href="https://validator.w3.org/feed/check.cgi?url=<?= $this->feed->url() ?>"><?= _t('sub.feed.validator') ?></a> </div> |
