{"version":3,"file":"panel.min.js","sources":["https:\/\/moodle.a2u.fr\/local\/accessibility\/amd\/src\/panel.js"],"sourcesContent":["\/\/ This file is part of Moodle - https:\/\/moodle.org\/\n\/\/\n\/\/ Moodle is free software: you can redistribute it and\/or modify\n\/\/ it under the terms of the GNU General Public License as published by\n\/\/ the Free Software Foundation, either version 3 of the License, or\n\/\/ (at your option) any later version.\n\/\/\n\/\/ Moodle is distributed in the hope that it will be useful,\n\/\/ but WITHOUT ANY WARRANTY; without even the implied warranty of\n\/\/ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\/\/ GNU General Public License for more details.\n\/\/\n\/\/ You should have received a copy of the GNU General Public License\n\/\/ along with Moodle. If not, see .\n\n\/**\n * Default script for accessibility panel\n *\n * @module local\/accessibility\n * @copyright 2023 Ponlawat Weerapanpisit \n * @license https:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\n\nimport $ from 'jquery';\n\n\/**\n * Initialise accessibility panel\n *\/\nexport const init = () => {\n $(() => {\n const $button = $('#local-accessibility-buttoncontainer button');\n const $panel = $('.local-accessibility-panel');\n const $closebtn = $('#local-accessibility-closebtn');\n\n if (!$button.length || !$panel.length) {\n return;\n }\n\n $panel.hide();\n\n $button.on('click', () => {\n $panel.toggle();\n });\n\n window.addEventListener('click', e => {\n if ($button[0].contains(e.target) || $panel[0].contains(e.target)) {\n return;\n }\n if ($panel.css('display') !== 'none') {\n $panel.hide();\n }\n });\n\n window.addEventListener('keyup', e => {\n if ($panel.css('display') !== 'none' && e.key === 'Escape') {\n $panel.hide();\n }\n });\n\n if ($closebtn.length) {\n $closebtn.on('click', () => {\n $panel.hide();\n });\n }\n });\n};\n"],"names":["$button","$panel","$closebtn","length","hide","on","toggle","window","addEventListener","e","contains","target","css","key"],"mappings":";;;;;;;wJA4BoB,0BACd,WACQA,SAAU,mBAAE,+CACZC,QAAS,mBAAE,8BACXC,WAAY,mBAAE,iCAEfF,QAAQG,QAAWF,OAAOE,SAI\/BF,OAAOG,OAEPJ,QAAQK,GAAG,SAAS,KAChBJ,OAAOK,YAGXC,OAAOC,iBAAiB,SAASC,IACzBT,QAAQ,GAAGU,SAASD,EAAEE,SAAWV,OAAO,GAAGS,SAASD,EAAEE,SAG5B,SAA1BV,OAAOW,IAAI,YACXX,OAAOG,UAIfG,OAAOC,iBAAiB,SAASC,IACC,SAA1BR,OAAOW,IAAI,YAAmC,WAAVH,EAAEI,KACtCZ,OAAOG,UAIXF,UAAUC,QACVD,UAAUG,GAAG,SAAS,KAClBJ,OAAOG"}