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:
parent
f712438ec1
commit
f9c735b2bb
196 changed files with 6055 additions and 3586 deletions
5
node_modules/tinymce/plugins/importcss/plugin.js
generated
vendored
5
node_modules/tinymce/plugins/importcss/plugin.js
generated
vendored
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue