Skip to content

Commit

Permalink
skip functionality media tailor
Browse files Browse the repository at this point in the history
  • Loading branch information
Leena-Sharma-rsys committed Jun 27, 2024
1 parent f9df074 commit 0ad26f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ads/media_tailor_ad.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ shaka.ads.MediaTailorAd = class {
* @export
*/
isSkippable() {
if (typeof this.skipOffset_ == "number") {
if (typeof this.skipOffset_ == 'number') {
return true;
}
return false;
Expand All @@ -90,7 +90,7 @@ shaka.ads.MediaTailorAd = class {
* @export
*/
getTimeUntilSkippable() {
if (typeof this.skipOffset_ != "number") {
if (typeof this.skipOffset_ != 'number') {
return this.getRemainingTime();
}
const canSkipIn =
Expand Down

0 comments on commit 0ad26f7

Please sign in to comment.