Skip to content

Commit

Permalink
Fixed: Use ES6 string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ahankinson committed Sep 3, 2018
1 parent b8f52f3 commit e438a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/js/plugins/manipulation.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export default class ManipulationPlugin
this._core.parentObject.removeChild(this._backdrop);

// show toolbar
document.getElementById(this._core.settings.selector + 'tools').style.display = 'block';
document.getElementById(`${this._core.settings.selector}tools`).style.display = 'block';
}
}

Expand Down

0 comments on commit e438a4a

Please sign in to comment.