We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b64f72 commit 343c41aCopy full SHA for 343c41a
plugins/star-rating/frontend/public/templates/feedback-popup.html
@@ -313,20 +313,7 @@
313
}
314
});
315
316
- // close when clicked to escape key
317
- document.onkeydown = function(evt) {
318
- evt = evt || window.event;
319
- var isEscape = false;
320
- if ("key" in evt) {
321
- isEscape = (evt.key == "Escape" || evt.key == "Esc");
322
- } else {
323
- isEscape = (evt.keyCode == 27);
324
- }
325
- if (isEscape) {
326
- hideFeedbackPopup();
327
328
- };
329
-
+
330
// event handler for countly feedback show comment area checkbox
331
// show hide comment area
332
$('body').on('change','#countly-feedback-show-comment', showHideCommentArea);
0 commit comments