mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-284 Fix javascript issue
This commit is contained in:
@@ -74,9 +74,14 @@ function bindEvents() {
|
||||
loadDash();
|
||||
});
|
||||
//load all the report
|
||||
$('form .formsubmiter').bind('click', function () {
|
||||
$('form input.formsubmiter').bind('click', function () {
|
||||
submiterAction($(this));
|
||||
});
|
||||
|
||||
$('form select.formsubmiter').bind('change', function () {
|
||||
submiterAction($("option:selected", $(this)));
|
||||
});
|
||||
|
||||
//reload the content by pressing enter key, it concerns the number of result by report
|
||||
$('form .entersubmiter').bind('keypress', function (event) {
|
||||
if (event.keyCode == '13') {
|
||||
|
Reference in New Issue
Block a user