bloom-player 2.19.9 → 2.20.0-alpha.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.
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta charset="UTF-8" />
9
9
  <!-- At build time, we replace this with the actual css file -->
10
- <link rel="stylesheet" href="bloomPlayer-CMetOJLC.css">
10
+ <link rel="stylesheet" href="bloomPlayer-CpTXugnQ.css">
11
11
  </head>
12
12
 
13
13
  <!-- About the background-color here... the bloomPlayer.js will set the background color
@@ -18,7 +18,7 @@
18
18
 
19
19
  <!-- At build time, we replace the target of this script tag to point at the
20
20
  the bloom player bundle with the cache-busting hash in its name. -->
21
- <script src="bloomPlayer.M4oHdiC2.js"></script>
21
+ <script src="bloomPlayer.CdHp5c3Q.js"></script>
22
22
  </body>
23
23
 
24
24
 
@@ -6,12 +6,12 @@ export interface ISetHighlightParams {
6
6
  oldElement?: Element | null | undefined;
7
7
  }
8
8
  export declare enum PlaybackMode {
9
- NewPage = 0,
10
- NewPageMediaPaused = 1,
11
- VideoPlaying = 2,
12
- VideoPaused = 3,
13
- AudioPlaying = 4,
14
- AudioPaused = 5,
9
+ NewPage = 0,// starting a new page ready to play
10
+ NewPageMediaPaused = 1,// starting a new page in the "paused" state
11
+ VideoPlaying = 2,// video is playing
12
+ VideoPaused = 3,// video is paused
13
+ AudioPlaying = 4,// narration and/or animation are playing (or possibly finished)
14
+ AudioPaused = 5,// narration and/or animation are paused
15
15
  MediaFinished = 6
16
16
  }
17
17
  export declare let currentPlaybackMode: PlaybackMode;