Skip to content

Commit

Permalink
Change to deal with non-backwards-compatible changes in UIFR-104
Browse files Browse the repository at this point in the history
  • Loading branch information
djazayeri committed Aug 7, 2013
1 parent 2978799 commit dd332c8
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion omod/src/main/webapp/fragments/decorator/standardEmrPage.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@
def title = config.title ?: ui.message("emr.title")
%>

<!DOCTYPE html>
<html>
<head>
<title>${ title ?: "OpenMRS" }</title>
<link rel="shortcut icon" type="image/ico" href="/${ ui.contextPath() }/images/openmrs-favicon.ico"/>
<link rel="icon" type="image/png\" href="/${ ui.contextPath() }/images/openmrs-favicon.png"/>
${ ui.resourceLinks() }
</head>
<body>
<script type="text/javascript">
var OPENMRS_CONTEXT_PATH = '${ ui.contextPath() }';
</script>

${ ui.includeFragment("appui", "header") }

<ul id="breadcrumbs"></ul>
Expand Down Expand Up @@ -56,4 +69,7 @@ ${ ui.includeFragment("appui", "header") }
featureToggles["${it.key}"] = ${ Boolean.parseBoolean(it.value)};
<% } %>
</script>
</script>

</body>
</html>

0 comments on commit dd332c8

Please sign in to comment.