This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const queryParams = "...........&type=ATTACHMENT&filename=" + fileName; | |
var xhttp = new XMLHttpRequest(); | |
xhttp.onreadystatechange = function() { | |
if (this.readyState == 4 && this.status == 200) { | |
// Action to be performed when the document is read; | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var css = ` | |
@import url(../../node_modules/selectize/dist/css/selectize.css);html{height:100%}html [type="radio"]:not(:checked),html [type="radio"]:checked{visibility:hidden}html body{background-color:#f6f6f6;height:100%;color:#6f6f6f;font-family:"Open Sans",sans-serif,sans-serif}html .bg-logo-light{background-image:url(img/logo-light-mediktor.png);background-position:center center;background-repeat:no-repeat}html .bg-logo-dark{background-image:url(img/logo-dark-mediktor.png);background-position:center center;background-repeat:no-repeat}html body.colored{background-color:#0471B9 !important}html .master .bar-bg{height:210px;background:#0471B9 !important;box-shadow:0 1px 10px rgba(0,0,0,0.25)}html .main{margin-top:-210px}html .main-content{margin-top:0;min-height:0}html .main-footer{text-align:center;padding:40px 0;color:#888}html .main-footer img{width:120px;height:auto;vertical-align:middle;margin:0 10px}html hr{border:none;border-top:1px solid rgba(0,0,0,0.1);box-shadow:none !important}html hr.spaced{margin: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert(1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adminUsers|adminCreateUser|adminEditUser|adminUserProfile": [PermissionProfileEnum.SUPER.value, PermissionProfileEnum.ADMINISTRATOR], | |
"evaluator": [PermissionProfileEnum.SUPER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSICIAN], | |
"history": [PermissionProfileEnum.SUPER, PermissionProfileEnum.HCA, PermissionProfileEnum.CASHIER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSICIAN], | |
"sessionsHistory": [PermissionProfileEnum.SUPER, PermissionProfileEnum.CASHIER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSICIAN], | |
"patientProfile": [PermissionProfileEnum.SUPER, PermissionProfileEnum.HCA, PermissionProfileEnum.CASHIER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSICIAN], | |
"patientCreate|patientEdit|patientSearch": [PermissionProfileEnum.SUPER, PermissionProfileEnum.CASHIER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSICIAN], | |
"patientEditMedicalData": [PermissionProfileEnum.SUPER, PermissionProfileEnum.NURSE, PermissionProfileEnum.PHYSI |
OlderNewer