Chromium Code Reviews| Index: Source/devtools/front_end/sdk/AnimationModel.js |
| diff --git a/Source/devtools/front_end/sdk/AnimationModel.js b/Source/devtools/front_end/sdk/AnimationModel.js |
| index 1c42e10a1ceb7c0d5bc9ff58a6060be1b69e3a5c..0dbaca1c34ea9adba244a26ca041ba5e942240d9 100644 |
| --- a/Source/devtools/front_end/sdk/AnimationModel.js |
| +++ b/Source/devtools/front_end/sdk/AnimationModel.js |
| @@ -353,7 +353,15 @@ WebInspector.AnimationModel.AnimationNode.prototype = { |
| */ |
| easing: function() |
| { |
| - return this._payload.easing; |
| + return this._easing || this._payload.easing; |
| + }, |
| + |
| + /** |
| + * @param {string} value |
| + */ |
| + setEasing: function(value) |
| + { |
| + this._easing = value; |
|
dgozman
2015/05/26 12:02:24
This should call protocol method.
samli
2015/05/27 05:21:59
Done.
|
| }, |
| __proto__: WebInspector.SDKObject.prototype |