Sha256: d8a173db85dac5a824866265cf910951377d17d16282f6b5d9d3d39d299d6617
Contents?: true
Size: 426 Bytes
Versions: 32
Compression:
Stored size: 426 Bytes
Contents
/** * Mute feature settings for background media (ATMO and background videos) * * @since 13.0 */ pageflow.backgroundMedia = { muted: false, unmute: function() { if (this.muted) { this.muted = false; pageflow.events.trigger('background_media:unmute'); } }, mute: function() { if (!this.muted) { this.muted = true; pageflow.events.trigger('background_media:mute'); } } };
Version data entries
32 entries across 32 versions & 1 rubygems