From 67e0f8570e846a34fbcf0540bf5449aea10cdf76 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Wed, 25 Apr 2018 23:03:48 +0100 Subject: [PATCH] fix autofocus --- app/Setting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Setting.php b/app/Setting.php index 492c4e8c..706e1eb7 100644 --- a/app/Setting.php +++ b/app/Setting.php @@ -209,7 +209,7 @@ class Setting extends Model $output .= '
'; $output .= Form::open(['url' => $url, 'method' => 'get']); $output .= '
'; - $output .= Form::text($var, null, ['class' => 'homesearch', autofocus => 'autofocus', 'placeholder' => __($name).' '.__('app.settings.search').'...']); + $output .= Form::text($var, null, ['class' => 'homesearch', 'autofocus' => 'autofocus', 'placeholder' => __($name).' '.__('app.settings.search').'...']); $output .= ''; $output .= '
'; $output .= Form::close();