| Index: third_party/polymer/v1_0/components-chromium/app-layout/app-scroll-effects/effects/resize-snapped-title-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/app-layout/app-scroll-effects/effects/resize-snapped-title-extracted.js b/third_party/polymer/v1_0/components-chromium/app-layout/app-scroll-effects/effects/resize-snapped-title-extracted.js
|
| deleted file mode 100644
|
| index 741c03d2649454ab6440897bac08e00644c64a35..0000000000000000000000000000000000000000
|
| --- a/third_party/polymer/v1_0/components-chromium/app-layout/app-scroll-effects/effects/resize-snapped-title-extracted.js
|
| +++ /dev/null
|
| @@ -1,50 +0,0 @@
|
| -/**
|
| - * Upon scrolling past a threshold, CSS transition the font size of a designated title element
|
| - * between two values.
|
| - */
|
| - Polymer.AppLayout.registerEffect('resize-snapped-title', {
|
| - /**
|
| - * @this Polymer.AppLayout.ElementWithBackground
|
| - */
|
| - setUp: function setUp(config) {
|
| - var title = this._getDOMRef('title');
|
| - var condensedTitle = this._getDOMRef('condensedTitle');
|
| - var duration = config.duration || '0.2s';
|
| - var fx = {};
|
| -
|
| - if (!condensedTitle) {
|
| - this._warn(this._logf('effects[resize-snapped-title]', 'undefined `condensed-title`'));
|
| - return false;
|
| - }
|
| - if (!title) {
|
| - this._warn(this._logf('effects[resize-snapped-title]', 'undefined `title`'));
|
| - return false;
|
| - }
|
| -
|
| - title.style.transitionProperty = 'opacity';
|
| - title.style.transitionDuration = duration;
|
| - condensedTitle.style.transitionProperty = 'opacity';
|
| - condensedTitle.style.transitionDuration = duration;
|
| - fx.condensedTitle = condensedTitle;
|
| - fx.title = title;
|
| - this._fxResizeSnappedTitle = fx;
|
| - },
|
| - /** @this Polymer.AppLayout.ElementWithBackground */
|
| - run: function run(p, y) {
|
| - var fx = this._fxResizeSnappedTitle;
|
| - if (p > 0) {
|
| - fx.title.style.opacity = 0;
|
| - fx.condensedTitle.style.opacity = 1;
|
| - } else {
|
| - fx.title.style.opacity = 1;
|
| - fx.condensedTitle.style.opacity = 0;
|
| - }
|
| - },
|
| - /** @this Polymer.AppLayout.ElementWithBackground */
|
| - tearDown: function tearDown() {
|
| - var fx = this._fxResizeSnappedTitle;
|
| - fx.title.style.transition = '';
|
| - fx.condensedTitle.style.transition = '';
|
| - delete this._fxResizeSnappedTitle;
|
| - }
|
| - });
|
|
|