From 1721f6e9e2d88d9ef4405d77b0b71c61edfd3c46 Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Thu, 15 Aug 2019 21:53:41 +0200 Subject: [PATCH 1/3] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 25b9a640..b55d9e50 100644 --- a/readme.md +++ b/readme.md @@ -686,6 +686,7 @@ Some awesome folks have made plugins for CMSs and Components for JavaScript fram | Vue | Gabe Dunn ([@redxtech](https://github.com/redxtech)) | [https://github.com/redxtech/vue-plyr](https://github.com/redxtech/vue-plyr) | | Neos | Jon Uhlmann ([@jonnitto](https://github.com/jonnitto)) | [https://packagist.org/packages/jonnitto/plyr](https://packagist.org/packages/jonnitto/plyr) | | Kirby | Dominik Pschenitschni ([@dpschen](https://github.com/dpschen)) | [https://github.com/dpschen/kirby-plyrtag](https://github.com/dpschen/kirby-plyrtag) | +| REDAXO | FriendsOfRedaxo / skerbis ([@skerbis](https://friendsofredaxo.github.io)) | [https://github.com/FriendsOfREDAXO/plyr](https://github.com/FriendsOfREDAXO/plyr) | # Issues @@ -728,7 +729,6 @@ Plyr costs money to run, not only my time. I donate my time for free as I enjoy - [koel - A personal music streaming server that works.](http://koel.phanan.net/) - [Oscar Radio](http://oscar-radio.xyz/) - [Sparkk TV](https://www.sparkktv.com/) -- [@halfhalftravel](https://www.halfhalftravel.com/) If you want to be added to the list, open a pull request. It'd be awesome to see how you're using Plyr 😎 From 91503d3698ca7a836bf7b09d16f5ee589325ac50 Mon Sep 17 00:00:00 2001 From: Thomas Skerbis Date: Thu, 15 Aug 2019 21:55:22 +0200 Subject: [PATCH 2/3] Update readme.md --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index b55d9e50..1ced7e68 100644 --- a/readme.md +++ b/readme.md @@ -729,6 +729,7 @@ Plyr costs money to run, not only my time. I donate my time for free as I enjoy - [koel - A personal music streaming server that works.](http://koel.phanan.net/) - [Oscar Radio](http://oscar-radio.xyz/) - [Sparkk TV](https://www.sparkktv.com/) +- [@halfhalftravel](https://www.halfhalftravel.com/) If you want to be added to the list, open a pull request. It'd be awesome to see how you're using Plyr 😎 From c3f10e7df3e77c3cf8ad3165ad881bcd11a9b7e3 Mon Sep 17 00:00:00 2001 From: Binyamin Laukstein <7raivis@inbox.lv> Date: Wed, 22 Jan 2020 08:53:08 +0200 Subject: [PATCH 3/3] Uncaught RangeError: Maximum call stack size exceeded Fix formatTime infinite loop #1621 --- src/js/utils/time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/utils/time.js b/src/js/utils/time.js index ffca88b2..17228de5 100644 --- a/src/js/utils/time.js +++ b/src/js/utils/time.js @@ -13,7 +13,7 @@ export const getSeconds = value => Math.trunc(value % 60, 10); export function formatTime(time = 0, displayHours = false, inverted = false) { // Bail if the value isn't a number if (!is.number(time)) { - return formatTime(null, displayHours, inverted); + return formatTime(undefined, displayHours, inverted); } // Format time component to add leading zero