golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/admin/launcher/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
classic.js
1.1 KB
Del
OK
gutenberg.js
2.22 KB
Del
OK
shared.js
4.95 KB
Del
OK
Edit: classic.js
(function ($) { function openInBreakdance(event) { event.preventDefault(); const newTab = window.breakdanceUtils.isAuxClick( event ); window.breakdanceUtils .autogenerateTitleIfNotSet() .saveClassic(() => { window.breakdanceUtils.redirectToBuilder(newTab); }); } function disableBreakdance(event) { event.preventDefault(); if ( window.breakdanceConfig.mode === 'breakdance' ) { return window.breakdanceUtils.disableAndExtractContent(() => { showClassicEditor(); }); } showClassicEditor(); } function showClassicEditor() { $('.breakdance-launcher').hide(); $('body').removeClass('is-breakdance-available'); $(window).resize(); // Trigger TinyMCE resize } function addListeners() { $("[data-breakdance-action='edit']").on('click', openInBreakdance); $("[data-breakdance-action='disable']").on('click', disableBreakdance); } $("document").ready(() => { addListeners(); if (!window.breakdanceConfig.isNew && window.breakdanceConfig.mode !== 'breakdance') { showClassicEditor(); } }); }(jQuery));
Save