diff options
author | Saivan <savian@me.com> | 2018-11-26 00:17:41 +1300 |
---|---|---|
committer | Saivan <savian@me.com> | 2018-11-26 00:17:41 +1300 |
commit | 617aa12304541cf1d80b2bf5567ac633958c38de (patch) | |
tree | c1082b4573625f93d18e82e6d5a0c4a40782993f /src/elements/G.js | |
parent | 599fda2f11c88b2c18d0cd0b57d4adeca20db2eb (diff) | |
download | svg.js-617aa12304541cf1d80b2bf5567ac633958c38de.tar.gz svg.js-617aa12304541cf1d80b2bf5567ac633958c38de.zip |
Reverted some of the lint rules after chatting with fuzzy
This commit reverts some of the rules we added on the linter, it changed a lot of
code again... but these won't happen too often.
Changes
=======
- Modified the linter again
Diffstat (limited to 'src/elements/G.js')
-rw-r--r-- | src/elements/G.js | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/src/elements/G.js b/src/elements/G.js index a72f1fb..6a93a3f 100644 --- a/src/elements/G.js +++ b/src/elements/G.js @@ -3,24 +3,18 @@ import { registerMethods } from '../utils/methods.js' import Container from './Container.js' export default class G extends Container { - - constructor ( node ) { - - super( nodeOrNew( 'g', node ), node ) - + constructor (node) { + super(nodeOrNew('g', node), node) } - } -registerMethods( { +registerMethods({ Element: { // Create a group element - group: wrapWithAttrCheck( function () { - - return this.put( new G() ) - - } ) + group: wrapWithAttrCheck(function () { + return this.put(new G()) + }) } -} ) +}) -register( G ) +register(G) |