Merge "LivePreview: Prevent unnecessary DOM change for spinner"
[lhc/web/wiklou.git] / includes / htmlform / HTMLTextField.php
index 06b397f..157116d 100644 (file)
@@ -7,7 +7,7 @@ class HTMLTextField extends HTMLFormField {
 
        function getSpellCheck() {
                $val = isset( $this->mParams['spellcheck'] ) ? $this->mParams['spellcheck'] : null;
-               if( is_bool( $val ) ) {
+               if ( is_bool( $val ) ) {
                        // "spellcheck" attribute literally requires "true" or "false" to work.
                        return $val === true ? 'true' : 'false';
                }
@@ -115,11 +115,15 @@ class HTMLTextField extends HTMLFormField {
 
                $type = $this->getType( $attribs );
 
-               return new OOUI\TextInputWidget( array(
+               return $this->getInputWidget( array(
                        'id' => $this->mID,
                        'name' => $this->mName,
                        'value' => $value,
                        'type' => $type,
                ) + $attribs );
        }
+
+       protected function getInputWidget( $params ) {
+               return new OOUI\TextInputWidget( $params );
+       }
 }