run:R W Run
3.24 KB
2026-03-11 16:18:51
R W Run
12.5 KB
2026-03-11 16:18:51
R W Run
11.45 KB
2026-03-11 16:18:51
R W Run
12.5 KB
2026-03-11 16:18:51
R W Run
11.44 KB
2026-03-11 16:18:51
R W Run
17.64 KB
2026-03-11 16:18:51
R W Run
16.49 KB
2026-03-11 16:18:51
R W Run
17.64 KB
2026-03-11 16:18:51
R W Run
16.48 KB
2026-03-11 16:18:51
R W Run
84 By
2026-03-11 16:18:51
R W Run
84 By
2026-03-11 16:18:51
R W Run
84 By
2026-03-11 16:18:51
R W Run
7.41 KB
2026-03-11 16:18:51
R W Run
84 By
2026-03-11 16:18:51
R W Run
3.32 KB
2026-03-11 16:18:51
R W Run
error_log
📄view.js
1import * as __WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__ from "@wordpress/interactivity";
2/******/ // The require scope
3/******/ var __webpack_require__ = {};
4/******/
5/************************************************************************/
6/******/ /* webpack/runtime/define property getters */
7/******/ (() => {
8/******/ // define getter functions for harmony exports
9/******/ __webpack_require__.d = (exports, definition) => {
10/******/ for(var key in definition) {
11/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
12/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
13/******/ }
14/******/ }
15/******/ };
16/******/ })();
17/******/
18/******/ /* webpack/runtime/hasOwnProperty shorthand */
19/******/ (() => {
20/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
21/******/ })();
22/******/
23/************************************************************************/
24var __webpack_exports__ = {};
25
26;// external "@wordpress/interactivity"
27var x = (y) => {
28 var x = {}; __webpack_require__.d(x, y); return x
29}
30var y = (x) => (() => (x))
31const interactivity_namespaceObject = x({ ["getContext"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.getContext), ["getElement"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.getElement), ["store"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.store), ["withSyncEvent"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.withSyncEvent) });
32;// ./node_modules/@wordpress/block-library/build-module/navigation/view.js
33
34const focusableSelectors = [
35 "a[href]",
36 'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',
37 "select:not([disabled]):not([aria-hidden])",
38 "textarea:not([disabled]):not([aria-hidden])",
39 "button:not([disabled]):not([aria-hidden])",
40 "[contenteditable]",
41 '[tabindex]:not([tabindex^="-"])'
42];
43document.addEventListener("click", () => {
44});
45const { state, actions } = (0,interactivity_namespaceObject.store)(
46 "core/navigation",
47 {
48 state: {
49 get roleAttribute() {
50 const ctx = (0,interactivity_namespaceObject.getContext)();
51 return ctx.type === "overlay" && state.isMenuOpen ? "dialog" : null;
52 },
53 get ariaModal() {
54 const ctx = (0,interactivity_namespaceObject.getContext)();
55 return ctx.type === "overlay" && state.isMenuOpen ? "true" : null;
56 },
57 get ariaLabel() {
58 const ctx = (0,interactivity_namespaceObject.getContext)();
59 return ctx.type === "overlay" && state.isMenuOpen ? ctx.ariaLabel : null;
60 },
61 get isMenuOpen() {
62 return Object.values(state.menuOpenedBy).filter(Boolean).length > 0;
63 },
64 get menuOpenedBy() {
65 const ctx = (0,interactivity_namespaceObject.getContext)();
66 return ctx.type === "overlay" ? ctx.overlayOpenedBy : ctx.submenuOpenedBy;
67 }
68 },
69 actions: {
70 openMenuOnHover() {
71 const { type, overlayOpenedBy } = (0,interactivity_namespaceObject.getContext)();
72 if (type === "submenu" && // Only open on hover if the overlay is closed.
73 Object.values(overlayOpenedBy || {}).filter(Boolean).length === 0) {
74 actions.openMenu("hover");
75 }
76 },
77 closeMenuOnHover() {
78 const { type, overlayOpenedBy } = (0,interactivity_namespaceObject.getContext)();
79 if (type === "submenu" && // Only close on hover if the overlay is closed.
80 Object.values(overlayOpenedBy || {}).filter(Boolean).length === 0) {
81 actions.closeMenu("hover");
82 }
83 },
84 openMenuOnClick() {
85 const ctx = (0,interactivity_namespaceObject.getContext)();
86 const { ref } = (0,interactivity_namespaceObject.getElement)();
87 ctx.previousFocus = ref;
88 actions.openMenu("click");
89 },
90 closeMenuOnClick() {
91 actions.closeMenu("click");
92 actions.closeMenu("focus");
93 },
94 openMenuOnFocus() {
95 actions.openMenu("focus");
96 },
97 toggleMenuOnClick() {
98 const ctx = (0,interactivity_namespaceObject.getContext)();
99 const { ref } = (0,interactivity_namespaceObject.getElement)();
100 if (window.document.activeElement !== ref) {
101 ref.focus();
102 }
103 const { menuOpenedBy } = state;
104 if (menuOpenedBy.click || menuOpenedBy.focus) {
105 actions.closeMenu("click");
106 actions.closeMenu("focus");
107 } else {
108 ctx.previousFocus = ref;
109 actions.openMenu("click");
110 }
111 },
112 handleMenuKeydown: (0,interactivity_namespaceObject.withSyncEvent)((event) => {
113 const { type, firstFocusableElement, lastFocusableElement } = (0,interactivity_namespaceObject.getContext)();
114 if (state.menuOpenedBy.click) {
115 if (event.key === "Escape") {
116 event.stopPropagation();
117 actions.closeMenu("click");
118 actions.closeMenu("focus");
119 return;
120 }
121 if (type === "overlay" && event.key === "Tab") {
122 if (event.shiftKey && window.document.activeElement === firstFocusableElement) {
123 event.preventDefault();
124 lastFocusableElement.focus();
125 } else if (!event.shiftKey && window.document.activeElement === lastFocusableElement) {
126 event.preventDefault();
127 firstFocusableElement.focus();
128 }
129 }
130 }
131 }),
132 handleMenuFocusout: (0,interactivity_namespaceObject.withSyncEvent)((event) => {
133 const { modal, type } = (0,interactivity_namespaceObject.getContext)();
134 if (event.relatedTarget === null || !modal?.contains(event.relatedTarget) && event.target !== window.document.activeElement && type === "submenu") {
135 actions.closeMenu("click");
136 actions.closeMenu("focus");
137 }
138 }),
139 openMenu(menuOpenedOn = "click") {
140 const { type } = (0,interactivity_namespaceObject.getContext)();
141 state.menuOpenedBy[menuOpenedOn] = true;
142 if (type === "overlay") {
143 document.documentElement.classList.add("has-modal-open");
144 }
145 },
146 closeMenu(menuClosedOn = "click") {
147 const ctx = (0,interactivity_namespaceObject.getContext)();
148 state.menuOpenedBy[menuClosedOn] = false;
149 if (!state.isMenuOpen) {
150 if (ctx.modal?.contains(window.document.activeElement)) {
151 ctx.previousFocus?.focus();
152 }
153 ctx.modal = null;
154 ctx.previousFocus = null;
155 if (ctx.type === "overlay") {
156 document.documentElement.classList.remove(
157 "has-modal-open"
158 );
159 }
160 }
161 }
162 },
163 callbacks: {
164 initMenu() {
165 const ctx = (0,interactivity_namespaceObject.getContext)();
166 const { ref } = (0,interactivity_namespaceObject.getElement)();
167 if (state.isMenuOpen) {
168 const focusableElements = ref.querySelectorAll(focusableSelectors);
169 ctx.modal = ref;
170 ctx.firstFocusableElement = focusableElements[0];
171 ctx.lastFocusableElement = focusableElements[focusableElements.length - 1];
172 }
173 },
174 focusFirstElement() {
175 const { ref } = (0,interactivity_namespaceObject.getElement)();
176 if (state.isMenuOpen) {
177 const focusableElements = ref.querySelectorAll(focusableSelectors);
178 focusableElements?.[0]?.focus();
179 }
180 }
181 }
182 },
183 { lock: true }
184);
185
186
Ui Ux Design – Teachers Night Out https://cardgames4educators.com Wed, 16 Oct 2024 22:24:18 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://cardgames4educators.com/wp-content/uploads/2024/06/cropped-Card-4-Educators-logo-32x32.png Ui Ux Design – Teachers Night Out https://cardgames4educators.com 32 32 Masters In English How English Speaker https://cardgames4educators.com/masters-in-english-how-english-speaker/ https://cardgames4educators.com/masters-in-english-how-english-speaker/#comments Mon, 27 May 2024 08:54:45 +0000 https://themexriver.com/wp/kadu/?p=1

Erat himenaeos neque id sagittis massa. Hac suscipit pulvinar dignissim platea magnis eu. Don tellus a pharetra inceptos efficitur dui pulvinar. Feugiat facilisis penatibus pulvinar nunc dictumst donec odio platea habitasse. Lacus porta dolor purus elit ante bibendum tortor netus taciti nullam cubilia. Erat per suspendisse placerat morbi egestas pulvinar bibendum sollicitudin nec. Euismod cubilia eleifend velit himenaeos sodales lectus. Leo maximus cras ac porttitor aliquam torquent pulvinar odio volutpat parturient. Quisque risus finibus suspendisse mus purus magnis facilisi condimentum consectetur dui. Curae elit suspendisse cursus vehicula.

Turpis taciti class non vel pretium quis pulvinar tempor lobortis nunc. Libero phasellus parturient sapien volutpat malesuada ornare. Cubilia dignissim sollicitudin rhoncus lacinia maximus. Cras lorem fermentum bibendum pellentesque nisl etiam ligula enim cubilia. Vulputate pede sapien torquent montes tempus malesuada in mattis dis turpis vitae. Porta est tempor ex eget feugiat vulputate ipsum. Justo nec iaculis habitant diam arcu fermentum.

We offer comprehen sive emplo ment services such as assistance wit employer compliance.Our company is your strategic HR partner as instead of HR. john smithson

Cubilia dignissim sollicitudin rhoncus lacinia maximus. Cras lorem fermentum bibendum pellentesque nisl etiam ligula enim cubilia. Vulputate pede sapien torquent montes tempus malesuada in mattis dis turpis vitae.

Exploring Learning Landscapes in Academic

Feugiat facilisis penatibus pulvinar nunc dictumst donec odio platea habitasse. Lacus porta dolor purus elit ante bibendum tortor netus taciti nullam cubilia. Erat per suspendisse placerat morbi egestas pulvinar bibendum sollicitudin nec. Euismod cubilia eleifend velit himenaeos sodales lectus. Leo maximus cras ac porttitor aliquam torquent.

]]>
https://cardgames4educators.com/masters-in-english-how-english-speaker/feed/ 1