|
@@ -559,6 +559,11 @@
|
|
|
|
|
|
let careMonths = {!! json_encode($careMonths) !!};
|
|
|
|
|
|
+ function reInitMoes() {
|
|
|
+ $('[moe][initialized]').removeAttr('initialized');
|
|
|
+ initMoes();
|
|
|
+ }
|
|
|
+
|
|
|
function init() {
|
|
|
let parent = $('#practice-rpm-manager');
|
|
|
|
|
@@ -567,6 +572,7 @@
|
|
|
.on('click', '.btn-bp-popup', function() {
|
|
|
showStagPopup('rpm-manager-bp-popup');
|
|
|
prepareMeasurementsPopup($(this).attr('data-uid'), 'bp');
|
|
|
+ reInitMoes();
|
|
|
return false;
|
|
|
});
|
|
|
|
|
@@ -575,6 +581,7 @@
|
|
|
.on('click', '.btn-weight-popup', function() {
|
|
|
showStagPopup('rpm-manager-weight-popup');
|
|
|
prepareMeasurementsPopup($(this).attr('data-uid'), 'weight');
|
|
|
+ reInitMoes();
|
|
|
return false;
|
|
|
});
|
|
|
|