Skip to content

Commit

Permalink
make controls always shown in amp for email (#25714)
Browse files Browse the repository at this point in the history
  • Loading branch information
fstanis committed Feb 25, 2020
1 parent c66bfa9 commit e45c22f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion extensions/amp-carousel/0.1/base-carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
import {Keys} from '../../../src/utils/key-codes';
import {Services} from '../../../src/services';
import {isAmp4Email} from '../../../src/format';
import {toggleAttribute} from '../../../src/dom';

/**
Expand All @@ -38,8 +39,11 @@ export class BaseCarousel extends AMP.BaseElement {
/** @override */
buildCallback() {
const input = Services.inputFor(this.win);
const doc = /** @type {!Document} */ (this.element.ownerDocument);
this.showControls_ =
input.isMouseDetected() || this.element.hasAttribute('controls');
isAmp4Email(doc) ||
input.isMouseDetected() ||
this.element.hasAttribute('controls');

if (this.showControls_) {
this.element.classList.add('i-amphtml-carousel-has-controls');
Expand Down

0 comments on commit e45c22f

Please sign in to comment.