Skip to content

Commit

Permalink
Expose scrollingContainer through props (zenoamaro#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkerjoeri authored and alexkrolick committed Jun 19, 2018
1 parent 95ca003 commit ce332cf
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,12 +267,13 @@ var QuillComponent = createClass({

getEditorConfig: function() {
return {
bounds: this.props.bounds,
formats: this.props.formats,
modules: this.props.modules,
placeholder: this.props.placeholder,
readOnly: this.props.readOnly,
theme: this.props.theme,
bounds: this.props.bounds,
formats: this.props.formats,
modules: this.props.modules,
placeholder: this.props.placeholder,
readOnly: this.props.readOnly,
theme: this.props.theme,
scrollingContainer: this.props.scrollingContainer,
};
},

Expand Down

0 comments on commit ce332cf

Please sign in to comment.