mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
d3.selection.prototype.size = function (size) {
|
|
if (!arguments.length) {
|
|
var node = this.node();
|
|
return [node.offsetWidth,
|
|
node.offsetHeight];
|
|
}
|
|
return this.attr({width: size[0], height: size[1]});
|
|
};
|