Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: elements/viewer-page-indicator/viewer-page-indicator.js

Issue 213223004: Make all the polymer elements CSP compliant. (Closed) Base URL: https://chromium.googlesource.com/chromium/html-office-public.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 Polymer('viewer-page-indicator', {
6 text: '1',
7 timerId: undefined,
8 ready: function() {
9 var callback = this.fadeIn.bind(this, 2000);
10 window.addEventListener('scroll', function() {
11 requestAnimationFrame(callback);
12 });
13 },
14 initialFadeIn: function() {
15 this.fadeIn(6000);
16 },
17 fadeIn: function(displayTime) {
18 var percent = window.scrollY /
19 (document.body.scrollHeight -
20 document.documentElement.clientHeight);
21 this.style.top = percent *
22 (document.documentElement.clientHeight - this.offsetHeight) + 'px';
23 this.style.opacity = 1;
24 clearTimeout(this.timerId);
25
26 this.timerId = setTimeout(function() {
27 this.style.opacity = 0;
28 this.timerId = undefined;
29 }.bind(this), displayTime);
30 }
31 });
OLDNEW
« no previous file with comments | « elements/viewer-page-indicator/viewer-page-indicator.html ('k') | elements/viewer-password-screen/viewer-password-screen.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698