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
| const adapter = { | |
| isProductPage: () => true, //checks if the page you are at is indeed a product page | |
| getProductData: () => ({ | |
| price: 10, | |
| title: 'Product title', | |
| images: ['src'], | |
| description: 'Full product description', | |
| category: 'Product category name' | |
| }) | |
| } |
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() { | |
| var event = new Event('poop') | |
| var clicked = 0 | |
| document.body.addEventListener('click', function() { | |
| clicked++ | |
| if (clicked > 1) { | |
| clicked = 0 | |
| document.body.dispatchEvent(event) |
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
| var node = false; | |
| if(editor.selection) { | |
| node = editor.selection.getNode(); | |
| // myPrism element ? | |
| if (!isMyPrismCodeblock(node)){ | |
| node = false; | |
| } | |
| } | |
| code = tinymce.html.Entities.encodeAllRaw(code.replace(/^\n+/gm,'')); |
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
| @media( max-width: 860px ) { | |
| .content-item { | |
| > .rel { | |
| padding: 15px 17px 12px; | |
| background: rgba(#5e96ff, 0.1); | |
| margin-bottom: 20px; | |
| br { | |
| display: none; |
NewerOlder