]> source.dussan.org Git - svg.js.git/commitdiff
Fixed a few hanging issues with the linter
authorSaivan <savian@me.com>
Mon, 26 Feb 2018 16:37:31 +0000 (03:37 +1100)
committerSaivan <savian@me.com>
Mon, 26 Feb 2018 16:37:31 +0000 (03:37 +1100)
This commit fixes a few typesetting issues that probably resulted
from the automated linting process

dist/svg.js
src/HtmlNode.js
src/attr.js
src/element.js
src/line.js
src/svg.js

index b3679d23629cb12ba4fc5f7fd882cc59ce7029a1..d37def178e0c59eadc23a0f0971d29e814c03a1d 100644 (file)
@@ -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
   }
 }
index 6d253a8e809cb9fe8a9e4c88cea9ad9e664e63e4..30cb4cf71ede3ab12b16dc1cd29429d34bb91c7a 100644 (file)
@@ -13,7 +13,9 @@ SVG.HtmlNode = SVG.invent({
         element.setData(JSON.parse(element.node.getAttribute('svgjs:data')) || {})
       }
 
-      if (i === null) { this.node.appendChild(element.node) } else if (element.node !== this.node.children[i]) {
+      if (i === null) {
+        this.node.appendChild(element.node)
+      } else if (element.node !== this.node.children[i]) {
         this.node.insertBefore(element.node, this.node.children[i])
       }
 
index 2e4b1cf2d35b74d1a6cc6bf0c52581ca04b1169f..19c7525d4abf1245ba47488a55476842ea782bd3 100644 (file)
@@ -6,8 +6,11 @@ SVG.extend(SVG.Element, {
       // get an object of attributes
       a = {}
       v = this.node.attributes
-      for (n = v.length - 1; n >= 0; n--) { a[v[n].nodeName] = SVG.regex.isNumber.test(v[n].nodeValue) ? parseFloat(v[n].nodeValue) : v[n].nodeValue }
-
+      for (n = v.length - 1; n >= 0; n--) {
+        a[v[n].nodeName] = SVG.regex.isNumber.test(v[n].nodeValue)
+          ? parseFloat(v[n].nodeValue)
+          : v[n].nodeValue
+      }
       return a
     } else if (typeof a === 'object') {
       // apply every attribute individually if an object is passed
index b9feec1860fc7ba1ecfeccfd9e000351448ac0e7..eca535b4eb0efee1419ae0e3b1902ad636ee80bc 100644 (file)
@@ -28,34 +28,42 @@ SVG.Element = SVG.invent({
     x: function (x) {
       return this.attr('x', x)
     },
+
     // Move over y-axis
     y: function (y) {
       return this.attr('y', y)
     },
+
     // Move by center over x-axis
     cx: function (x) {
       return x == null ? this.x() + this.width() / 2 : this.x(x - this.width() / 2)
     },
+
     // Move by center over y-axis
     cy: function (y) {
       return y == null ? this.y() + this.height() / 2 : this.y(y - this.height() / 2)
     },
+
     // Move element to given x and y values
     move: function (x, y) {
       return this.x(x).y(y)
     },
+
     // Move element by its center
     center: function (x, y) {
       return this.cx(x).cy(y)
     },
+
     // Set width of element
     width: function (width) {
       return this.attr('width', width)
     },
+
     // Set height of element
     height: function (height) {
       return this.attr('height', height)
     },
+
     // Set element size to given width and height
     size: function (width, height) {
       var p = proportionalSize(this, width, height)
@@ -64,6 +72,7 @@ SVG.Element = SVG.invent({
         .width(new SVG.Number(p.width))
         .height(new SVG.Number(p.height))
     },
+
     // Clone element
     clone: function (parent) {
       // write dom data to the dom so the clone can pickup the data
@@ -78,26 +87,31 @@ SVG.Element = SVG.invent({
 
       return clone
     },
+
     // Remove element
     remove: function () {
       if (this.parent()) { this.parent().removeElement(this) }
 
       return this
     },
+
     // Replace element
     replace: function (element) {
       this.after(element).remove()
 
       return element
     },
+
     // Add element to given container and return self
     addTo: function (parent) {
       return createElement(parent).put(this)
     },
+
     // Add element to given container and return container
     putIn: function (parent) {
       return createElement(parent).add(this)
     },
+
     // Get / set id
     id: function (id) {
       // generate new id if no id set
@@ -108,6 +122,7 @@ SVG.Element = SVG.invent({
       // dont't set directly width this.node.id to make `null` work correctly
       return this.attr('id', id)
     },
+
     // Checks whether the given point inside the bounding box of the element
     inside: function (x, y) {
       var box = this.bbox()
@@ -117,32 +132,38 @@ SVG.Element = SVG.invent({
         x < box.x + box.width &&
         y < box.y + box.height
     },
+
     // Show element
     show: function () {
       return this.css('display', '')
     },
+
     // Hide element
     hide: function () {
       return this.css('display', 'none')
     },
+
     // Is element visible?
     visible: function () {
       return this.css('display') !== 'none'
     },
+
     // Return id on string conversion
     toString: function () {
       return this.id()
     },
+
     // Return array of classes on the node
     classes: function () {
       var attr = this.attr('class')
-
       return attr == null ? [] : attr.trim().split(SVG.regex.delimiter)
     },
+
     // Return true if class exists on the node, false otherwise
     hasClass: function (name) {
       return this.classes().indexOf(name) !== -1
     },
+
     // Add class to the node
     addClass: function (name) {
       if (!this.hasClass(name)) {
@@ -153,6 +174,7 @@ SVG.Element = SVG.invent({
 
       return this
     },
+
     // Remove class from the node
     removeClass: function (name) {
       if (this.hasClass(name)) {
@@ -163,14 +185,17 @@ SVG.Element = SVG.invent({
 
       return this
     },
+
     // Toggle the presence of a class on the node
     toggleClass: function (name) {
       return this.hasClass(name) ? this.removeClass(name) : this.addClass(name)
     },
+
     // Get referenced element form attribute value
     reference: function (attr) {
       return SVG.get(this.attr(attr))
     },
+
     // Returns the parent element instance
     parent: function (type) {
       var parent = this
@@ -189,13 +214,17 @@ SVG.Element = SVG.invent({
         parent = SVG.adopt(parent.node.parentNode)
       }
     },
+
     // Get parent document
     doc: function () {
       return this instanceof SVG.Doc ? this : this.parent(SVG.Doc)
-    },   // Get defs
+    },
+
+    // Get defs
     defs: function () {
       return this.doc().defs()
     },
+
     // return array of all ancestors of given type up to the root svg
     parents: function (type) {
       var parents = []
@@ -210,14 +239,17 @@ SVG.Element = SVG.invent({
 
       return parents
     },
+
     // matches the element vs a css selector
     matches: function (selector) {
       return matches(this.node, selector)
     },
+
     // Returns the svg node to call native svg methods on it
     native: function () {
       return this.node
     },
+
     // Import raw svg
     svg: function (svg) {
       var well, len
@@ -244,7 +276,8 @@ SVG.Element = SVG.invent({
 
       return this
     },
-  // write svgjs data to the dom
+
+    // write svgjs data to the dom
     writeDataToDom: function () {
       // dump variables recursively
       if (this.is(SVG.Parent)) {
@@ -257,12 +290,12 @@ SVG.Element = SVG.invent({
       this.node.removeAttribute('svgjs:data')
 
       if (Object.keys(this.dom).length) {
-        this.node.setAttribute('svgjs:data', JSON.stringify(this.dom))
-      } // see #428
-
+        this.node.setAttribute('svgjs:data', JSON.stringify(this.dom)) // see #428
+      }
       return this
     },
-  // set given data to the elements data property
+
+    // set given data to the elements data property
     setData: function (o) {
       this.dom = o
       return this
index b1472182099b0e08a438b9799186e59e03de9a5d..100d625d0a3fcd317189f6bcfc5b1d60b735c124 100644 (file)
@@ -13,7 +13,7 @@ SVG.Line = SVG.invent({
     array: function () {
       return new SVG.PointArray([
         [ this.attr('x1'), this.attr('y1') ],
-       [ this.attr('x2'), this.attr('y2') ]
+        [ this.attr('x2'), this.attr('y2') ]
       ])
     },
     // Overwrite native plot() method
index 2c69f0ad604306c6fb77f9b64444a190f7e1596f..e6903da0a88c6f140c94a0642328417b0cb434ef 100644 (file)
@@ -1,10 +1,10 @@
-/* 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
   }
 }