1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/PlayerSkins/shareButton.js
2023-06-30 11:41:25 -03:00

18 lines
562 B
JavaScript

var Button = videojs.getComponent('Button');
class SocialButton extends Button {
constructor() {
super(...arguments);
this.addClass('social-button');
this.controlText("social");
setTimeout(function(){avideoTooltip(".social-button","Share");},1000);
}
handleClick() {
console.log('socialButton clicked');
tooglePlayersocial();
}
}
videojs.registerComponent('SocialButton', SocialButton);
player.getChild('controlBar').addChild('SocialButton', {}, getPlayerButtonIndex('fullscreenToggle') - 1);