OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright 2014 Google Inc. All rights reserved. | 2 Copyright 2014 Google Inc. All rights reserved. |
3 | 3 |
4 Licensed under the Apache License, Version 2.0 (the "License"); | 4 Licensed under the Apache License, Version 2.0 (the "License"); |
5 you may not use this file except in compliance with the License. | 5 you may not use this file except in compliance with the License. |
6 You may obtain a copy of the License at | 6 You may obtain a copy of the License at |
7 | 7 |
8 http://www.apache.org/licenses/LICENSE-2.0 | 8 http://www.apache.org/licenses/LICENSE-2.0 |
9 | 9 |
10 Unless required by applicable law or agreed to in writing, software | 10 Unless required by applicable law or agreed to in writing, software |
11 distributed under the License is distributed on an "AS IS" BASIS, | 11 distributed under the License is distributed on an "AS IS" BASIS, |
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 See the License for the specific language governing permissions and | 13 See the License for the specific language governing permissions and |
14 limitations under the License. | 14 limitations under the License. |
15 --> | 15 --> |
16 <script src="src/dev.js"></script> | 16 <script src="src/dev.js"></script> |
17 <script src="src/scope.js"></script> | 17 <script src="src/scope.js"></script> |
18 <script src="src/timing-utilities.js"></script> | 18 <script src="src/timing-utilities.js"></script> |
19 <script src="src/normalize-keyframes.js"></script> | 19 <script src="src/normalize-keyframes.js"></script> |
| 20 <script src="src/deprecation.js"></script> |
20 <script src="src/animation-node.js"></script> | 21 <script src="src/animation-node.js"></script> |
21 <script src="src/effect.js"></script> | 22 <script src="src/effect.js"></script> |
22 <script src="src/property-interpolation.js"></script> | 23 <script src="src/property-interpolation.js"></script> |
23 <script src="src/animation.js"></script> | 24 <script src="src/animation.js"></script> |
24 <script src="src/apply-preserving-inline-style.js"></script> | 25 <script src="src/apply-preserving-inline-style.js"></script> |
25 <script src="src/element-animatable.js"></script> | 26 <script src="src/element-animatable.js"></script> |
26 <script src="src/interpolation.js"></script> | 27 <script src="src/interpolation.js"></script> |
27 <script src="src/matrix-interpolation.js"></script> | 28 <script src="src/matrix-interpolation.js"></script> |
28 <script src="src/player.js"></script> | 29 <script src="src/player.js"></script> |
29 <script src="src/tick.js"></script> | 30 <script src="src/tick.js"></script> |
30 <script src="src/matrix-decomposition.js"></script> | 31 <script src="src/matrix-decomposition.js"></script> |
31 <script src="src/handler-utils.js"></script> | 32 <script src="src/handler-utils.js"></script> |
32 <script src="src/shadow-handler.js"></script> | 33 <script src="src/shadow-handler.js"></script> |
33 <script src="src/number-handler.js"></script> | 34 <script src="src/number-handler.js"></script> |
34 <script src="src/visibility-handler.js"></script> | 35 <script src="src/visibility-handler.js"></script> |
35 <script src="src/color-handler.js"></script> | 36 <script src="src/color-handler.js"></script> |
36 <script src="src/dimension-handler.js"></script> | 37 <script src="src/dimension-handler.js"></script> |
37 <script src="src/box-handler.js"></script> | 38 <script src="src/box-handler.js"></script> |
38 <script src="src/transform-handler.js"></script> | 39 <script src="src/transform-handler.js"></script> |
39 <script src="src/font-weight-handler.js"></script> | 40 <script src="src/font-weight-handler.js"></script> |
40 <script src="src/position-handler.js"></script> | 41 <script src="src/position-handler.js"></script> |
41 <script src="src/shape-handler.js"></script> | 42 <script src="src/shape-handler.js"></script> |
42 <script src="src/property-names.js"></script> | 43 <script src="src/property-names.js"></script> |
43 | 44 |
OLD | NEW |