fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix dialog actions on Enter
[redakcja.git]
/
src
/
redakcja
/
static
/
js
/
wiki
/
base.js
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);
+ }
});
}
});
}