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
1b031ca
..
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);
+ }
});
}
});
}
@@
-308,7
+315,7
@@
var span = $("*[data-ui-error-for='"+field_name+"']", this.$elem);
if(!span.length) {
var span = $("*[data-ui-error-for='"+field_name+"']", this.$elem);
if(!span.length) {
- unassigned.push(
field_name
);
+ unassigned.push(
errors[field_name]
);
continue;
}
continue;
}
@@
-316,7
+323,8
@@
}
if(unassigned.length > 0)
}
if(unassigned.length > 0)
- global.text( global.text() + 'W formularzu wystąpiły błędy');
+ global.text(
+ global.text() + 'Wystąpił błąd: ' + unassigned.join(', '));
}
}
}
}