This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"element":{"id":100,"data":{"type":"EssentialElements\\Section","properties":{"design":{"layout_v2":{"layout":"vertical"}}}},"children":[{"id":102,"data":{"type":"EssentialElements\\Icon","properties":{"content":{"content":{"icon":{"id":15,"slug":"icon-accessibility","name":"accessibility","svgCode":"<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"icon-accessibility\" viewBox=\"0 0 32 32\">\n<path d=\"M13 3c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3z\"/>\n<path d=\"M20 10l10.3-4.443-0.743-1.857-12.557 4.3h-2l-12.557-4.3-0.743 1.857 10.3 4.443v8l-4.102 13.268 1.87 0.709 5.804-12.977h0.857l5.804 12.977 1.87-0.709-4.102-13.268z\"/>\n</svg>","iconSetSlug":"IcoMoon Free"}}},"settings":{"advanced":{"css":{"breakpoint_base":"%%SELECTOR%% {\n --r: 0;\n rotate: calc(var(--r) * 1deg);\n}"},"id":"my-icon"},"elements_hive_pro":{"interactions":null}}}},"children":[],"_parentId":100},{"id":114,"data":{"type":"EssentialElements\\Advancedslider","properties":{"settings":{"elements_hive_pro":null,"advanc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Use some code injection browser extension like | |
| https://chromewebstore.google.com/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld | |
| */ | |
| ( () => { | |
| const app = document.querySelector('#app') | |
| if(!app) return | |
| const initObservable = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function observePreview(){ | |
| const config = { attributes: true }; | |
| const callback = function(mutationsList, observer) { | |
| for(let mutation of mutationsList) { | |
| if ( mutation.attributeName === 'data-elementor-device-mode' ) { | |
| switch (mutation.target.attributes["data-elementor-device-mode"].value) { | |
| case 'desktop' : | |
| run('desktop'); | |
| break; |