Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Backend
Commits
650a40c3
Commit
650a40c3
authored
Mar 01, 2014
by
Matija Obreza
Browse files
Fixed NPE when no institutes in country
parent
57c4c4d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/WEB-INF/jsp/country/details.jsp
View file @
650a40c3
...
...
@@ -62,7 +62,7 @@
<c:set
value=
"true"
var=
"showMap"
/>
</c:if>
</c:forEach>
<c:if
test=
"
${
showMap
}
"
>
<c:if
test=
"
${
showMap
!=
null
&&
showMap
}
"
>
<div
class=
"row"
style=
""
>
<div
class=
"col-sm-12"
>
<div
id=
"map"
class=
"gis-map"
></div>
...
...
@@ -98,7 +98,7 @@
</ul>
<c:if
test=
"
${
showMap
}
"
>
<c:if
test=
"
${
showMap
!=
null
and
showMap
}
"
>
<content
tag=
"javascript"
>
<script
type=
"text/javascript"
>
jQuery
(
document
).
ready
(
function
()
{
...
...
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