Files
gwms/GWMS.UI/wwwroot/js/external.js
T

10 lines
243 B
JavaScript

window.global = {
openModal: function (modalId) {
modalId = '#' + modalId;
$(modalId).modal('show');
},
closeModal: function (modalId) {
modalId = '#' + modalId;
$(modalId).modal('hide');
},
}