Skip to content

Commit

Permalink
Fixed linter issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny-james committed Oct 30, 2017
1 parent ed9f49e commit 39c17b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocks/editable/tinymce.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ export default class TinyMCE extends Component {

const { removedKeys, updatedKeys } = diffAriaProps( this.props, nextProps );
removedKeys.forEach( ( key ) =>
this.editorNode.removeAttribute( key ) );
this.editorNode.removeAttribute( key ) );
updatedKeys.forEach( ( key ) =>
this.editorNode.setAttribute( key, nextProps[ key ] ) );
this.editorNode.setAttribute( key, nextProps[ key ] ) );
}

componentWillUnmount() {
Expand Down

0 comments on commit 39c17b6

Please sign in to comment.