This commit is contained in:
thednp 2016-08-19 01:12:53 +03:00
parent 4faa433429
commit 571b96e2a9
3 changed files with 4 additions and 3 deletions

View file

@ -23,7 +23,8 @@
'use strict';
var K = window.KUTE, S = S || {}, p,
_svg = document.querySelector('svg'),
_svg = document.querySelector('path') || document.querySelector('svg'),
// _svg = K.selector('path') || K.selector('svg'),
_ns = _svg && _svg.ownerSVGElement && _svg.ownerSVGElement.namespaceURI || 'http://www.w3.org/2000/svg',
_nm = ['strokeWidth', 'strokeOpacity', 'fillOpacity', 'stopOpacity'], // numeric SVG CSS props
_cls = ['fill', 'stroke', 'stopColor'], // colors 'hex', 'rgb', 'rgba' -- #fff / rgb(0,0,0) / rgba(0,0,0,0)

File diff suppressed because one or more lines are too long

View file

@ -23,7 +23,7 @@
'use strict';
var K = window.KUTE, S = S || {}, p,
_svg = document.querySelector('svg'),
_svg = document.querySelector('path') || document.querySelector('svg'),
_ns = _svg && _svg.ownerSVGElement && _svg.ownerSVGElement.namespaceURI || 'http://www.w3.org/2000/svg',
_nm = ['strokeWidth', 'strokeOpacity', 'fillOpacity', 'stopOpacity'], // numeric SVG CSS props
_cls = ['fill', 'stroke', 'stopColor'], // colors 'hex', 'rgb', 'rgba' -- #fff / rgb(0,0,0) / rgba(0,0,0,0)