Home | History | Annotate | Download | only in js

Lines Matching full:slideshow

188   var slideShowButton = this.toolbar_.querySelector('button.slideshow');
194 util.createChild(this.container_, 'tool slideshow-toolbar');
195 util.createChild(slideShowToolbar, 'slideshow-play').
197 util.createChild(slideShowToolbar, 'slideshow-end').
612 // If the saved selection is multiple the Slideshow should cycle through
637 * automatic change in the slideshow mode).
835 case 'U+001B': // Escape exits the slideshow.
840 case 'U+0020': // Space pauses/resumes the slideshow.
854 return true; // Consume all keystrokes in the slideshow mode.
1063 // Slideshow
1066 * Slideshow interval in ms.
1071 * First slideshow interval in ms. It should be shorter so that the user
1082 * @return {boolean} True if the slideshow is on.
1086 return this.container_.hasAttribute('slideshow');
1090 * Starts the slideshow.
1103 // the slideshow is being started from the mosaic view.
1104 this.container_.setAttribute('slideshow', 'playing');
1132 * Stops the slideshow.
1144 this.container_.removeAttribute('slideshow');
1146 // Do not restore fullscreen if we exited fullscreen while in slideshow.
1163 * @return {boolean} True if the slideshow is playing (not paused).
1167 return this.container_.getAttribute('slideshow') === 'playing';
1171 * Pauses/resumes the slideshow.
1184 * @param {number=} opt_interval Slideshow interval in ms.
1188 console.assert(this.isSlideshowPlaying_(), 'Inconsistent slideshow state');
1200 * Resumes the slideshow.
1201 * @param {number=} opt_interval Slideshow interval in ms.
1205 this.container_.setAttribute('slideshow', 'playing');
1210 * Pauses the slideshow.
1214 this.container_.setAttribute('slideshow', 'paused');