@internetstiftelsen/styleguide 2.24.32 → 2.24.33-beta.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -163,7 +163,7 @@ var VideoGuidePlayback = function () {
|
|
|
163
163
|
var seconds = Math.floor(this.duration % 60);
|
|
164
164
|
var formattedDuration = minutes + ':' + (seconds < 10 ? '0' : '') + seconds;
|
|
165
165
|
|
|
166
|
-
this.totaltimeElement.innerText = formattedDuration
|
|
166
|
+
this.totaltimeElement.innerText = formattedDuration;
|
|
167
167
|
}
|
|
168
168
|
}, {
|
|
169
169
|
key: 'sync',
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ export default class VideoGuidePlayback {
|
|
|
44
44
|
const seconds = Math.floor(this.duration % 60);
|
|
45
45
|
const formattedDuration = `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
|
|
46
46
|
|
|
47
|
-
this.totaltimeElement.innerText =
|
|
47
|
+
this.totaltimeElement.innerText = formattedDuration;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
sync() {
|