Merge pull request #141 from gurupras/gurupras-develop
Added new configuration option 'handlers'
This commit is contained in:
commit
6110098e97
2
dist/plyr.js
vendored
2
dist/plyr.js
vendored
File diff suppressed because one or more lines are too long
@ -269,6 +269,12 @@ Options must be passed as an object to the `setup()` method as above.
|
|||||||
<td>—</td>
|
<td>—</td>
|
||||||
<td>See <code>plyr.js</code> in <code>/src</code> for more info. You probably don't need to change any of these.</td>
|
<td>See <code>plyr.js</code> in <code>/src</code> for more info. You probably don't need to change any of these.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>handlers</code></td>
|
||||||
|
<td>Object</td>
|
||||||
|
<td>—</td>
|
||||||
|
<td>Allows early binding of handlers to Plyr's controls. See <code>controls</code> above for list of controls and see <code>plyr.js</code> in <code>/src</code> for more info.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>classes</code></td>
|
<td><code>classes</code></td>
|
||||||
<td>Object</td>
|
<td>Object</td>
|
||||||
|
@ -68,6 +68,18 @@
|
|||||||
currentTime: '.plyr__time--current',
|
currentTime: '.plyr__time--current',
|
||||||
duration: '.plyr__time--duration'
|
duration: '.plyr__time--duration'
|
||||||
},
|
},
|
||||||
|
handlers: {
|
||||||
|
seek: null,
|
||||||
|
play: null,
|
||||||
|
pause: null,
|
||||||
|
restart: null,
|
||||||
|
rewind: null,
|
||||||
|
forward: null,
|
||||||
|
mute: null,
|
||||||
|
volume: null,
|
||||||
|
captions: null,
|
||||||
|
fullscreen: null
|
||||||
|
},
|
||||||
classes: {
|
classes: {
|
||||||
videoWrapper: 'plyr__video-wrapper',
|
videoWrapper: 'plyr__video-wrapper',
|
||||||
embedWrapper: 'plyr__video-embed',
|
embedWrapper: 'plyr__video-embed',
|
||||||
@ -2170,34 +2182,43 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function _registerHandler(element, event, userHandler, defaultHandler) {
|
||||||
|
_on(element, event, function(e) {
|
||||||
|
if(userHandler) {
|
||||||
|
userHandler(e);
|
||||||
|
}
|
||||||
|
defaultHandler(e);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Play
|
// Play
|
||||||
_on(plyr.buttons.play, 'click', function() { _togglePlay(true); });
|
_registerHandler(plyr.buttons.play, 'click', config.handlers.play, function() { _togglePlay(true); });
|
||||||
|
|
||||||
// Pause
|
// Pause
|
||||||
_on(plyr.buttons.pause, 'click', function() { _togglePlay(); });
|
_registerHandler(plyr.buttons.pause, 'click', config.handlers.pause, function() { _togglePlay(); });
|
||||||
|
|
||||||
// Restart
|
// Restart
|
||||||
_on(plyr.buttons.restart, 'click', _seek);
|
_registerHandler(plyr.buttons.restart, 'click', config.handlers.restart, _seek);
|
||||||
|
|
||||||
// Rewind
|
// Rewind
|
||||||
_on(plyr.buttons.rewind, 'click', _rewind);
|
_registerHandler(plyr.buttons.rewind, 'click', config.handlers.rewind, _rewind);
|
||||||
|
|
||||||
// Fast forward
|
// Fast forward
|
||||||
_on(plyr.buttons.forward, 'click', _forward);
|
_registerHandler(plyr.buttons.forward, 'click', config.handlers.forward, _forward);
|
||||||
|
|
||||||
// Seek
|
// Seek
|
||||||
_on(plyr.buttons.seek, inputEvent, _seek);
|
_registerHandler(plyr.buttons.seek, inputEvent, config.handlers.seek, _seek);
|
||||||
|
|
||||||
// Set volume
|
// Set volume
|
||||||
_on(plyr.volume, inputEvent, function() {
|
_registerHandler(plyr.volume, inputEvent, config.handlers.volume, function() {
|
||||||
_setVolume(this.value);
|
_setVolume(plyr.volume.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Mute
|
// Mute
|
||||||
_on(plyr.buttons.mute, 'click', _toggleMute);
|
_registerHandler(plyr.buttons.mute, 'click', config.handlers.mute, _toggleMute);
|
||||||
|
|
||||||
// Fullscreen
|
// Fullscreen
|
||||||
_on(plyr.buttons.fullscreen, 'click', _toggleFullscreen);
|
_registerHandler(plyr.buttons.fullscreen, 'click', config.handlers.fullscreen, _toggleFullscreen);
|
||||||
|
|
||||||
// Handle user exiting fullscreen by escaping etc
|
// Handle user exiting fullscreen by escaping etc
|
||||||
if (fullscreen.supportsFullScreen) {
|
if (fullscreen.supportsFullScreen) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user