fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
1cc3cb0
)
Fix dialog actions on Enter
master
author
Radek Czajka
<rczajka@rczajka.pl>
Tue, 1 Apr 2025 14:15:27 +0000
(16:15 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Tue, 1 Apr 2025 14:15:27 +0000
(16:15 +0200)
src/redakcja/static/js/wiki/base.js
patch
|
blob
|
history
diff --git
a/src/redakcja/static/js/wiki/base.js
b/src/redakcja/static/js/wiki/base.js
index
ad0ca83
..
3ee92c4
100644
(file)
--- a/
src/redakcja/static/js/wiki/base.js
+++ b/
src/redakcja/static/js/wiki/base.js
@@
-249,9
+249,7
@@
var self = this;
/* bind buttons */
var self = this;
/* bind buttons */
- $('button[data-ui-action]', self.$elem).click(function(event) {
- event.preventDefault();
-
+ function dataUiAction(elem) {
var action = $(this).attr('data-ui-action');
console.log("Button pressed, action: ", action);
var action = $(this).attr('data-ui-action');
console.log("Button pressed, action: ", action);
@@
-263,6
+261,15
@@
if(action == 'cancel')
self.hide();
}
if(action == 'cancel')
self.hide();
}
+ }
+ $('button[data-ui-action]', self.$elem).click(function(event) {
+ event.preventDefault();
+ dataUiAction(this);
+ }).on('keydown'), function(event) {
+ if (event.key == 'Enter') {
+ event.preventDefault();
+ dataUiAction(this);
+ }
});
}
});
}