Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
5ecea463
Commit
5ecea463
authored
Jun 06, 2019
by
Piotr Gawron
Browse files
there was a need to close edit-project dialog twice
parent
eca47d9f
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
5ecea463
...
@@ -7,6 +7,8 @@ minerva (12.3.1~beta.1) unstable; urgency=low
...
@@ -7,6 +7,8 @@ minerva (12.3.1~beta.1) unstable; urgency=low
*
Bug
fix
:
list
of
availbale
annotators
is
sorted
alphabetically
(#
815
)
*
Bug
fix
:
list
of
availbale
annotators
is
sorted
alphabetically
(#
815
)
*
Bug
fix
:
protein
types
are
sorted
properly
in
"Select valid annotations"
*
Bug
fix
:
protein
types
are
sorted
properly
in
"Select valid annotations"
dialog
(#
815
)
dialog
(#
815
)
*
Bug
fix
:
when
changing
data
in
edit
user
dialog
there
was
a
need
to
click
close
button
twice
(#
818
)
minerva
(
13.1.0
~
beta
.0
)
unstable
;
urgency
=
low
minerva
(
13.1.0
~
beta
.0
)
unstable
;
urgency
=
low
*
Feature
:
annotators
are
more
flexible
-
you
can
define
set
of
input
and
*
Feature
:
annotators
are
more
flexible
-
you
can
define
set
of
input
and
...
...
frontend-js/src/main/js/gui/admin/EditProjectDialog.js
View file @
5ecea463
...
@@ -1018,6 +1018,10 @@ EditProjectDialog.prototype.open = function () {
...
@@ -1018,6 +1018,10 @@ EditProjectDialog.prototype.open = function () {
width
:
window
.
innerWidth
*
0.75
,
width
:
window
.
innerWidth
*
0.75
,
height
:
window
.
innerHeight
/
2
height
:
window
.
innerHeight
/
2
});
});
$
(
"
.ui-dialog-titlebar-close
"
,
$
(
div
).
dialog
().
siblings
(
'
.ui-dialog-titlebar
'
)).
on
(
"
mousedown
"
,
function
()
{
//we need to close dialog on mouse down, because processing modal dialogs prevents the click to finish happening
$
(
div
).
dialog
(
"
close
"
);
});
}
}
$
(
div
).
dialog
(
"
open
"
);
$
(
div
).
dialog
(
"
open
"
);
};
};
...
...
frontend-js/src/main/js/gui/admin/EditUserDialog.js
View file @
5ecea463
...
@@ -625,6 +625,10 @@ EditUserDialog.prototype.open = function () {
...
@@ -625,6 +625,10 @@ EditUserDialog.prototype.open = function () {
width
:
window
.
innerWidth
/
2
,
width
:
window
.
innerWidth
/
2
,
height
:
window
.
innerHeight
/
2
height
:
window
.
innerHeight
/
2
});
});
$
(
"
.ui-dialog-titlebar-close
"
,
$
(
div
).
dialog
().
siblings
(
'
.ui-dialog-titlebar
'
)).
on
(
"
mousedown
"
,
function
()
{
//we need to close dialog on mouse down, because processing modal dialogs prevents the click to finish happening
$
(
div
).
dialog
(
"
close
"
);
});
}
}
$
(
div
).
dialog
(
"
open
"
);
$
(
div
).
dialog
(
"
open
"
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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