mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
$(document).ready(function () {
|
|
|
|
$('a.canWatchPlayButton').click(function (event) {
|
|
event.preventDefault();
|
|
var link = $(this).attr('href');
|
|
flixFullScreen(link);
|
|
});
|
|
|
|
$(document).on('keyup', function (evt) {
|
|
if (evt.keyCode == 27) {
|
|
closeFlixFullScreen();
|
|
}
|
|
});
|
|
});
|
|
|