OLD | NEW |
1 | 1 |
2 | 2 |
3 (function() { | 3 (function() { |
4 | 4 |
5 'use strict'; | 5 'use strict'; |
6 | 6 |
7 // this would be the only `paper-drawer-panel` in | 7 // this would be the only `paper-drawer-panel` in |
8 // the whole app that can be in `dragging` state | 8 // the whole app that can be in `dragging` state |
9 var sharedPanel = null; | 9 var sharedPanel = null; |
10 | 10 |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 s.transform = this._transformForTranslateX(translateX); | 439 s.transform = this._transformForTranslateX(translateX); |
440 } else { | 440 } else { |
441 s.webkitTransform = this._transformForTranslateX(translateX); | 441 s.webkitTransform = this._transformForTranslateX(translateX); |
442 } | 442 } |
443 } | 443 } |
444 | 444 |
445 }); | 445 }); |
446 | 446 |
447 }()); | 447 }()); |
448 | 448 |
OLD | NEW |