diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-05 19:02:35 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-05 19:02:35 +0100 |
commit | 2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9 (patch) | |
tree | 4abb508477aa4b6b811f89731011661783a2225c /src/selector.js | |
parent | 4049e2e6361d5ed9120f1edd02ef96ecc138fa6d (diff) | |
download | svg.js-2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9.tar.gz svg.js-2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9.zip |
Linted all files, upgraded all dependencies
Diffstat (limited to 'src/selector.js')
-rw-r--r-- | src/selector.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/selector.js b/src/selector.js index c6717fb..6ee1207 100644 --- a/src/selector.js +++ b/src/selector.js @@ -1,7 +1,6 @@ -import {idFromReference} from './helpers.js' -import {map} from './utils.js' -import {adopt} from './adopter.js' -import {registerMethods} from './methods.js' +import { map } from './utils.js' +import { adopt } from './adopter.js' +import { registerMethods } from './methods.js' // // Method for getting an element by id // SVG.get = function (id) { @@ -37,4 +36,4 @@ export function find (query) { return baseFind(query, this.node) } -registerMethods('Dom', {find}) +registerMethods('Dom', { find }) |