Linux heracles.o2switch.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
/
home
/
ophq1335
/
www
/
wp-content
/
themes
/
Divi
/
core
/
code-snippets
/
app
/
lib
/
/home/ophq1335/www/wp-content/themes/Divi/core/code-snippets/app/lib/code-snippets-library.js
// Set global variable to detect new library item creation. window.CodeSnippetItemsLoaded = {}; export const setCodeSnippetItemsLoaded = (context, flag) => { window.CodeSnippetItemsLoaded = { ...CodeSnippetItemsLoaded, [context] : flag, }; }; /* eslint-disable import/prefer-default-export */ export const getItemTypeByContext = context => { let type; switch (context) { case 'code_html': type = 'et_code_snippet_html_js'; break; case 'code_css_no_selector': type = 'et_code_snippet_css_no_selector'; break; default: type = 'et_code_snippet_css'; break; } return type; }; export const setCodeSnippetsLibraryToken = (token) => { window.globalCloudToken = token; };