Remove unnecessary parentheses

This commit is contained in:
Frederic Kettelhoit 2020-03-18 14:01:23 +01:00 committed by Atlas Cove
parent 8142282ce3
commit d69f0e542b

View File

@ -24,7 +24,7 @@ function Manager (client) {
this.update = function () {
this.el.setAttribute('width', (client.tool.settings.size.width) + 'px')
this.el.setAttribute('height', (client.tool.settings.size.height) + 'px')
this.el.style.width = (client.tool.settings.size.width)
this.el.style.width = client.tool.settings.size.width
this.el.style.height = client.tool.settings.size.height
const styles = client.tool.styles