Quellcode durchsuchen

Add autofocus on subscription page (#3334)

Before, there was no autofocusing on the subscription page. It feels
a bit off since most of the time, when you're landing on that page
you want to add a new feed.
Now, the focus is on the feed URL input to smooth the process of adding
a feed.
Alexis Degrugillier vor 5 Jahren
Ursprung
Commit
739080ff10
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      app/views/subscription/add.phtml

+ 1 - 1
app/views/subscription/add.phtml

@@ -27,7 +27,7 @@
 		<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"/>
+				<input id="url_rss" name="url_rss" type="url" required="required" autocomplete="off" class="long" autofocus="autofocus" />
 			</div>
 		</div>