{"version":3,"sources":["webpack:///./LeLab.Web/src/js/disable-right-click.entry.js"],"names":["PageComponent","constructor","node","this","component","images","querySelectorAll","forEach","x","addEventListener","onContextMenu","e","preventDefault","destroy","removeEventListener"],"mappings":"4FAAA,kBA0BA,IAAIA,IAAc,yBAxBlB,MAEIC,aAAY,KAAEC,IAEVC,KAAKC,UAAYF,EACjBC,KAAKE,OAASF,KAAKC,UAAUE,iBAAiB,0BAE9CH,KAAKE,OAAOE,QAAQC,IAChBA,EAAEC,iBAAiB,cAAeN,KAAKO,iBAI/CA,cAAcC,GACVA,EAAEC,iBAGNC,UAEQV,KAAKC,kBAAkBD,KAAKC,UAC5BD,KAAKE,QAAQF,KAAKE,OAAOE,QAAQC,GAAKA,EAAEM,oBAAoB,cAAeX,KAAKO,gBAChFP,KAAKE,eAAeF,KAAKE,Y","file":"disable-right-click.js","sourcesContent":["import { PageComponent } from \"barba\"\r\n\r\nclass noContextMenu {\r\n\r\n constructor({ node }) {\r\n // Props\r\n this.component = node;\r\n this.images = this.component.querySelectorAll('.context-menu-disabled');\r\n\r\n this.images.forEach(x => {\r\n x.addEventListener('contextmenu', this.onContextMenu);\r\n })\r\n }\r\n\r\n onContextMenu(e) {\r\n e.preventDefault();\r\n }\r\n\r\n destroy() {\r\n // Props\r\n if (this.component) delete this.component;\r\n if (this.images) this.images.forEach(x => x.removeEventListener('contextmenu', this.onContextMenu));\r\n if (this.images) delete this.images; \r\n }\r\n}\r\n\r\nnew PageComponent('[data-no-context-menu]', noContextMenu);"],"sourceRoot":""}