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 ZiadahPlugin=function(t){"use strict";function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=Array(e);n<e;n++)a[n]=t[n];return a}function n(t,e,n,a,r,o,i){try{var c=t[o](i),s=c.value}catch(t){return void n(t)}c.done?e(s):Promise.resolve(s).then(a,r)}function a(t){return function(){var e=this,a=arguments;return new Promise((function(r,o){var i=t.apply(e,a);function c(t){n(i,r,o,c,s,"next",t)}function s(t){n(i,r,o,c,s,"throw",t)}c(void 0)}))}}function r(t,e,n){return e=l(e),function(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,p()?Reflect.construct(e,n||[],l(t).constructor):e.apply(t,n))}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enume |
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
> next build | |
▲ Next.js 14.2.1 | |
Creating an optimized production build ... | |
✓ Compiled successfully | |
✓ Linting and checking validity of types | |
✓ Collecting page data | |
Generating static pages (0/5) [= ]react-i18next:: You will need to pass in an i18next instance by using initReactI18next | |
TypeError: n.dir is not a function |
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
<script> | |
window.purchaseEvent = function purchaseEvent(transactionItems) { | |
campaign(6, 'purchase', transactionItems); | |
} | |
window.productDetailsEvent = function productDetailsEvent(productViewd) { | |
window.setTimeout(function() { | |
productDetailsInfo(productViewd); | |
}, 5000); |
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
<script> | |
window.purchaseEvent = function purchaseEvent(transactionItems) { | |
campaign(6, 'purchase', transactionItems); | |
} | |
window.productDetailsEvent = function productDetailsEvent(productViewd) { | |
window.setTimeout(function() { | |
productDetailsInfo(productViewd); | |
}, 5000); |
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
<?php | |
namespace App\Foundation\Services\StorefrontTheme; | |
use Twig\Environment; | |
use Twig\Loader\ArrayLoader; | |
use Twig\Extension\SandboxExtension; | |
use Twig\Sandbox\SecurityPolicy; |
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
{% schema %} | |
{ | |
"name": { | |
"ar": "قائمة المنتجات", | |
"en": "Products" | |
}, | |
"icon": "fal fa-box", | |
"display": true, | |
"settings": { | |
"title": { |
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
(window.NREUM || (NREUM = {})).init = { | |
privacy: { | |
cookies_enabled: true | |
}, | |
ajax: { | |
deny_list: ["bam.eu01.nr-data.net"] | |
}, | |
distributed_tracing: { | |
enabled: true | |
} |
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 hasMetaTag(name) { | |
return document.querySelector(`meta[name="${name}"]`) !== null; | |
} | |
const metaExists = hasMetaTag('LABLEB_SEARCH_PROJECT'); | |
if (metaExists) { | |
// | |
} else { | |
// | |
} |
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
<script defer> | |
const hmtlEntitiesDecode = (encodedStr) => $("<div/>").html(encodedStr).text(); | |
const sortProductsResult = (event) => { | |
try { | |
event.preventDefault(); | |
const sort = event.target.value; | |
const urlMap = { | |
oldest: "sort_by=created_at&order=asc", | |
latest: "sort_by=created_at&order=desc", |
NewerOlder