Commit 09395ed2 by Qiang Xue

Merge pull request #4974 from creocoder/html-button-type-fix

Html::button() type is `button` by default
parents 26526ff0 ed251d89
......@@ -425,6 +425,9 @@ class BaseHtml
*/
public static function button($content = 'Button', $options = [])
{
if (!isset($options['type'])) {
$options['type'] = 'button';
}
return static::tag('button', $content, $options);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment