1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00

We can add a skip intro button on video

This commit is contained in:
Daniel Neto 2024-05-15 09:33:59 -03:00
parent f712438ec1
commit f9c735b2bb
196 changed files with 6055 additions and 3586 deletions

View file

@ -1,5 +1,5 @@
/**
* TinyMCE version 7.0.1 (2024-04-10)
* TinyMCE version 7.1.0 (2024-05-08)
*/
(function () {
@ -141,7 +141,8 @@
const skinUrlBase = getSkinUrl(editor);
const skinUrl = skinUrlBase ? editor.documentBaseURI.toAbsolute(skinUrlBase) : global$2.baseURL + '/skins/ui/' + skin;
const contentSkinUrlPart = global$2.baseURL + '/skins/content/';
return href === skinUrl + '/content' + (editor.inline ? '.inline' : '') + '.min.css' || href.indexOf(contentSkinUrlPart) !== -1;
const suffix = editor.editorManager.suffix;
return href === skinUrl + '/content' + (editor.inline ? '.inline' : '') + `${ suffix }.css` || href.indexOf(contentSkinUrlPart) !== -1;
}
return false;
};