You idiot
This commit is contained in:
parent
997d77ed00
commit
9b0149c07a
|
@ -3,7 +3,7 @@ var ChartAnimationMixin = {
|
||||||
|
|
||||||
animate: function(ref, attr, from, to) {
|
animate: function(ref, attr, from, to) {
|
||||||
var node = ref.getDOMNode(),
|
var node = ref.getDOMNode(),
|
||||||
anim = anim = document.createElementNS('http://www.w3.org/2000/svg', 'animate');
|
anim = document.createElementNS('http://www.w3.org/2000/svg', 'animate');
|
||||||
|
|
||||||
anim.setAttributeNS(null, 'attributeType', 'XML');
|
anim.setAttributeNS(null, 'attributeType', 'XML');
|
||||||
anim.setAttributeNS(null, 'attributeName', attr);
|
anim.setAttributeNS(null, 'attributeName', attr);
|
||||||
|
@ -12,11 +12,12 @@ var ChartAnimationMixin = {
|
||||||
anim.setAttributeNS(null, 'calcMode', 'spline');
|
anim.setAttributeNS(null, 'calcMode', 'spline');
|
||||||
anim.setAttributeNS(null, 'keySplines', this.easing);
|
anim.setAttributeNS(null, 'keySplines', this.easing);
|
||||||
anim.setAttributeNS(null, 'repeatCount', '1');
|
anim.setAttributeNS(null, 'repeatCount', '1');
|
||||||
node.appendChild(anim);
|
anim.addEventListener('endEvent', function() {
|
||||||
anim.beginElement();
|
|
||||||
setTimeout(function() {
|
|
||||||
node.setAttributeNS(null, attr, to);
|
node.setAttributeNS(null, attr, to);
|
||||||
}, this.animDuration);
|
});
|
||||||
|
node.appendChild(anim);
|
||||||
|
|
||||||
|
anim.beginElement();
|
||||||
},
|
},
|
||||||
|
|
||||||
clearAnimations: function(ref) {
|
clearAnimations: function(ref) {
|
||||||
|
|
Loading…
Reference in New Issue