(animatingRect, fromRect, toRect, options)
| 676 | return target.offsetWidth; |
| 677 | } |
| 678 | function calculateRealTime(animatingRect, fromRect, toRect, options) { |
| 679 | return Math.sqrt(Math.pow(fromRect.top - animatingRect.top, 2) + Math.pow(fromRect.left - animatingRect.left, 2)) / Math.sqrt(Math.pow(fromRect.top - toRect.top, 2) + Math.pow(fromRect.left - toRect.left, 2)) * options.animation; |
| 680 | } |
| 681 | |
| 682 | var plugins = []; |
| 683 | var defaults = { |
no outgoing calls
no test coverage detected
searching dependent graphs…