blob: 60f62c472a724520158c0a8d26dc0716434983d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SVG.Container = function(element) {
this.constructor.call(this, element)
}
// Inherit from SVG.Parent
SVG.Container.prototype = new SVG.Parent
//
SVG.extend(SVG.Container, {
// Get the viewBox and calculate the zoom value
viewbox: function(v) {
if (arguments.length == 0)
/* act as a getter if there are no arguments */
return new SVG.ViewBox(this)
/* otherwise act as a setter */
v = arguments.length == 1 ?
[v.x, v.y, v.width, v.height] :
[].slice.call(arguments)
return this.attr('viewBox', v)
}
})
|