diff options
author | Saivan <savian@me.com> | 2018-02-27 03:37:31 +1100 |
---|---|---|
committer | Saivan <savian@me.com> | 2018-02-27 03:37:31 +1100 |
commit | 97abec91d691093ccefcbb8552dec2a0575c6523 (patch) | |
tree | 3c14087d5fc13c5cdf90dab0ebe1d43834c207f3 /dist | |
parent | a9211366e507342795c1169593b87fa5abdf08c9 (diff) | |
download | svg.js-97abec91d691093ccefcbb8552dec2a0575c6523.tar.gz svg.js-97abec91d691093ccefcbb8552dec2a0575c6523.zip |
Fixed a few hanging issues with the linter
This commit fixes a few typesetting issues that probably resulted
from the automated linting process
Diffstat (limited to 'dist')
-rw-r--r-- | dist/svg.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js index b3679d2..d37def1 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@mick-wout.com> * @license MIT * -* BUILT: Tue Feb 27 2018 02:50:00 GMT+1100 (AEDT) +* BUILT: Tue Feb 27 2018 03:30:34 GMT+1100 (AEDT) */; (function(root, factory) { @@ -31,13 +31,13 @@ if (!supported) return {supported: false} // Otherwise, the library will be here -/* eslint-disable */ +/* global createElement, capitalize */ +/* eslint-disable new-cap */ // The main wrapping element var SVG = this.SVG = function (element) { if (SVG.supported) { element = createElement(element) - return element } } |