Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
7721a447
Commit
7721a447
authored
Jun 26, 2020
by
Piotr Gawron
Browse files
login on enter
parent
ded082d8
Pipeline
#29014
passed with stage
in 16 minutes and 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
7721a447
...
...
@@ -19,6 +19,8 @@ minerva (15.1.0) unstable; urgency=medium
CONVERSION
(#
1300
)
*
Small
improvement
:
when
uploading
complex
map
with
images
warnings
are
raised
if
images
are
not
referenced
in
coords
.
txt
file
(#
1308
)
*
Small
improvement
:
hitting
enter
after
filling
credentials
automatically
tries
to
log
in
(#
1312
)
*
Bug
fix
:
export
to
image
from
selected
polygon
contained
all
elements
inside
rectangle
bounded
by
the
polygon
coordinates
(#
1096
)
*
Bug
fix
:
continuous
refreshing
list
of
project
when
uploading
/
removing
...
...
frontend-js/src/main/js/gui/LoginDialog.js
View file @
7721a447
...
...
@@ -134,6 +134,16 @@ LoginDialog.prototype._createLoginTab = function () {
href
:
"
#
"
}));
$
(
loginInput
).
on
(
'
keypress
'
,
function
(
e
)
{
if
(
e
.
which
===
13
)
{
$
(
passwordInput
).
focus
();
}
});
$
(
passwordInput
).
on
(
'
keypress
'
,
function
(
e
)
{
if
(
e
.
which
===
13
)
{
$
(
loginButton
).
click
();
}
});
};
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment