summaryrefslogtreecommitdiff
path: root/app/client/common
diff options
context:
space:
mode:
Diffstat (limited to 'app/client/common')
-rw-r--r--app/client/common/index.js3
-rw-r--r--app/client/common/textInput.component.js3
2 files changed, 5 insertions, 1 deletions
diff --git a/app/client/common/index.js b/app/client/common/index.js
index 7448104..e6baafc 100644
--- a/app/client/common/index.js
+++ b/app/client/common/index.js
@@ -1,3 +1,4 @@
+import AudioPlayer from './audioPlayer/audioPlayer.component'
import AugmentationGrid from './augmentationGrid.component'
import Button from './button.component'
import ButtonGrid from './buttonGrid.component'
@@ -24,7 +25,7 @@ import * as Views from './views'
export {
Views,
- Loading, Progress, Header,
+ Loading, Progress, Header, AudioPlayer,
FolderList, FileList, FileRow, FileUpload,
Gallery, Player,
Group, ParamGroup, Param,
diff --git a/app/client/common/textInput.component.js b/app/client/common/textInput.component.js
index d429944..d3b16ad 100644
--- a/app/client/common/textInput.component.js
+++ b/app/client/common/textInput.component.js
@@ -34,6 +34,9 @@ class TextInput extends Component {
value={this.state.changed ? this.state.value : this.props.value}
onInput={this.handleInput}
onKeydown={this.handleKeydown}
+ autofocus={this.props.autofocus}
+ autoComplete={this.props.autocomplete}
+ autoCapitalize={this.props.autocapitalize || 'off'}
placeholder={this.props.placeholder}
autofocus={this.props.autofocus}
className={this.props.className || ''}