Skip to content

Commit 112e3ff

Browse files
committed
2 parents 5038258 + f1546de commit 112e3ff

File tree

5 files changed

+4229
-1800
lines changed

5 files changed

+4229
-1800
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
sites/**
55
!sites/default
66
sites/default/sqlconf.php
7-
7+
**/node_modules/**
88
backups/

assets/css/iziModalToast/iziModal.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@
244244
margin: 0 0 -6px 0;
245245
width: 100%;
246246
transition: height 0.3s ease;
247+
height: 95% !important;
247248
}
248249
.iziModal-overlay{
249250
display: block;
@@ -1096,4 +1097,4 @@ html.iziModal-isAttached{
10961097
transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
10971098
opacity: 0;
10981099
}
1099-
}
1100+
}

assets/css/iziModalToast/iziModal.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

interface/patient_file/summary/stats_full.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,17 @@ function dopclick(id, category , type) {
9797
alert("<?php echo addslashes(xl('You are not authorized to add/edit issues')); ?>");
9898
<?php endif; ?>
9999
}
100-
100+
101+
//function to remove underscore
102+
function titleFormat(str){
103+
var newstr = str.replace(/_/g, " ");
104+
return newstr.toUpperCase();
105+
}
101106
// function to open izi-modal
102107
function initIziLink(link , width , height, category, type) {
108+
109+
category = titleFormat(category);
110+
103111
$("#izi-iframe").iziModal({
104112
title: '<b style="color: white">'+category+'</b>',
105113
subtitle: type+ " Issue",

0 commit comments

Comments
 (0)