-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.wrap-svg.js
58 lines (57 loc) · 1.61 KB
/
jquery.wrap-svg.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Generated by CoffeeScript 1.3.3
(function(jQuery) {
var createSvgWrapper, svgWrapper, svg_tag_names, tag_name, wrap_map, _i, _len;
createSvgWrapper = function(svg_tag_name) {
var key, obj, val, _fn, _ref;
obj = {
_svgEl: null
};
_ref = $("<svg><" + svg_tag_name + "/></svg>").find("" + svg_tag_name)[0];
_fn = function(key) {
if ((val != null) && (val.baseVal != null)) {
return Object.defineProperty(obj, key, {
get: function() {
return this._svgEl[key].baseVal;
},
set: function(value) {
return this._svgEl[key].baseVal = value;
}
});
} else {
return Object.defineProperty(obj, key, {
get: function() {
return this._svgEl[key];
},
set: function(value) {
return this._svgEl[key] = value;
}
});
}
};
for (key in _ref) {
val = _ref[key];
_fn(key);
}
return obj;
};
svg_tag_names = ['rect', 'circle', 'ellipse', 'line', 'polygon', 'polyline'];
wrap_map = {};
for (_i = 0, _len = svg_tag_names.length; _i < _len; _i++) {
tag_name = svg_tag_names[_i];
wrap_map[tag_name] = createSvgWrapper(tag_name);
}
svgWrapper = function(el) {
this._svgEl = el;
this.__proto__ = wrap_map[el.tagName];
return this;
};
return jQuery.fn.wrapSvg = function() {
return this.map(function(i, el) {
if (el.namespaceURI === "http://www.w3.org/2000/svg" && (!("_svgEl" in el))) {
return new svgWrapper(el);
} else {
return el;
}
});
};
})(window.jQuery);