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
c9ddb411
Commit
c9ddb411
authored
Jun 06, 2019
by
Piotr Gawron
Browse files
redirect url from export panel fixed
parent
5ecea463
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
c9ddb411
...
@@ -5,6 +5,7 @@ minerva (12.3.1~beta.1) unstable; urgency=low
...
@@ -5,6 +5,7 @@ minerva (12.3.1~beta.1) unstable; urgency=low
that introduced second line for tab selection (#758)
that introduced second line for tab selection (#758)
* Bug fix: invisible layer shouldn'
t
be
shown
in
the
on
th
map
(#
813
)
* Bug fix: invisible layer shouldn'
t
be
shown
in
the
on
th
map
(#
813
)
*
Bug
fix
:
list
of
availbale
annotators
is
sorted
alphabetically
(#
815
)
*
Bug
fix
:
list
of
availbale
annotators
is
sorted
alphabetically
(#
815
)
*
Bug
fix
:
redirect
url
from
export
panel
is
fixed
(#
819
)
*
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
*
Bug
fix
:
when
changing
data
in
edit
user
dialog
there
was
a
need
to
click
...
...
frontend-js/src/main/js/gui/Header.js
View file @
c9ddb411
...
@@ -111,7 +111,7 @@ Header.prototype._createHeaderGui = function (guiParams) {
...
@@ -111,7 +111,7 @@ Header.prototype._createHeaderGui = function (guiParams) {
content
:
'
<i class="fa fa-home" style="font-size:17px"></i>
'
+
projectName
,
content
:
'
<i class="fa fa-home" style="font-size:17px"></i>
'
+
projectName
,
xss
:
false
xss
:
false
});
});
homeLink
.
href
=
self
.
getServerConnector
().
getServerBaseUrl
()
+
"
?id=
"
+
projectId
;
homeLink
.
href
=
self
.
getServerConnector
().
getServerBaseUrl
()
+
"
index.xhtml
?id=
"
+
projectId
;
self
.
getElement
().
appendChild
(
homeLink
);
self
.
getElement
().
appendChild
(
homeLink
);
};
};
...
...
frontend-js/src/main/js/minerva.js
View file @
c9ddb411
...
@@ -772,7 +772,7 @@ function createLoginDiv(configuration) {
...
@@ -772,7 +772,7 @@ function createLoginDiv(configuration) {
});
});
$
(
'
#go_to_map_button
'
,
result
).
click
(
function
()
{
$
(
'
#go_to_map_button
'
,
result
).
click
(
function
()
{
return
ServerConnector
.
getProjectId
().
then
(
function
(
projectId
)
{
return
ServerConnector
.
getProjectId
().
then
(
function
(
projectId
)
{
window
.
location
.
href
=
ServerConnector
.
getServerBaseUrl
()
+
'
?id=
'
+
projectId
;
window
.
location
.
href
=
ServerConnector
.
getServerBaseUrl
()
+
'
index.xhtml
?id=
'
+
projectId
;
});
});
});
});
$
(
'
#register_button
'
,
result
).
click
(
function
()
{
$
(
'
#register_button
'
,
result
).
click
(
function
()
{
...
...
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