File tree 3 files changed +26
-3
lines changed
3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 6
6
* [ Usage] ( #usage )
7
7
* [ Events] ( #events )
8
8
* [ Examples] ( #examples )
9
+ * [ Debugging] ( #debugging )
9
10
* [ Download] ( #download )
10
11
* [ Running the Examples] ( #running-the-examples )
11
12
@@ -89,13 +90,16 @@ player
89
90
player .on (' stateChange' , (event ) => {
90
91
// event.data
91
92
});
92
- ```
93
-
93
+
94
+ ```
95
+
94
96
` player.off ` removes a previously added event listener, e.g.
95
97
96
98
``` js
97
99
var listener = player .on (/* ... */ );
98
- player .off (listener)
100
+
101
+ player .off (listener);
102
+
99
103
```
100
104
101
105
## Examples
@@ -104,6 +108,19 @@ player.off(listener)
104
108
* [ Multiple players] ( ./examples/src/multiple-players/index.html ) .
105
109
* [ Registering events handlers] ( ./examples/src/registering-event-handlers/index.html ) .
106
110
111
+ ## Debugging
112
+
113
+ ` youtube-player ` is using [ ` debug ` ] ( https://www.npmjs.com/package/debug ) module to expose debugging information.
114
+
115
+ The ` debug ` namespace is "youtube-player".
116
+
117
+ To display ` youtube-player ` logs configure ` localStorage.debug ` , e.g.
118
+
119
+ ``` js
120
+ localStorage .debug = ' youtube-player:*' ;
121
+
122
+ ```
123
+
107
124
## Download
108
125
109
126
Using [ NPM] ( https://www.npmjs.org/ ) :
Original file line number Diff line number Diff line change 12
12
},
13
13
"dependencies" : {
14
14
"babel-runtime" : " ^6.23.0" ,
15
+ "debug" : " ^2.6.6" ,
15
16
"load-script" : " ^1.0.0" ,
16
17
"lodash" : " ^4.17.4" ,
17
18
"sister" : " ^3.0.0"
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
3
3
import _ from 'lodash' ;
4
+ import createDebug from 'debug' ;
4
5
import functionNames from './functionNames' ;
5
6
import eventNames from './eventNames' ;
6
7
import FunctionStateMap from './FunctionStateMap' ;
@@ -9,6 +10,8 @@ import type {
9
10
YouTubePlayerType
10
11
} from './types' ;
11
12
13
+ const debug = createDebug ( 'youtube-player' ) ;
14
+
12
15
const YouTubePlayer = { } ;
13
16
14
17
type EventHandlerMapType = {
@@ -29,6 +32,8 @@ YouTubePlayer.proxyEvents = (emitter: EmitterType): EventHandlerMapType => {
29
32
const onEventName = 'on' + _ . upperFirst ( eventName ) ;
30
33
31
34
events [ onEventName ] = ( event ) => {
35
+ debug ( 'event "%s"' , onEventName , event ) ;
36
+
32
37
emitter . trigger ( eventName , event ) ;
33
38
} ;
34
39
}
You can’t perform that action at this time.
0 commit comments