sbd-npm 1.1.36 → 1.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/util.js +2 -2
package/package.json
CHANGED
package/util.js
CHANGED
@@ -593,9 +593,9 @@ const Util = {
|
|
593
593
|
_html.push('<h4 class="modal-title" id="', modal_id, '_title">Loading...</h4>');
|
594
594
|
_html.push('</div>');
|
595
595
|
if (Util.is_mobile()) {
|
596
|
-
_html.push('<div class="modal-body table-responsive">');
|
596
|
+
_html.push('<div id="', modal_id, '_body" class="modal-body table-responsive">');
|
597
597
|
} else {
|
598
|
-
_html.push('<div class="modal-body">');
|
598
|
+
_html.push('<div id="', modal_id, '_body" class="modal-body">');
|
599
599
|
}
|
600
600
|
_html.push(modal_content_html);
|
601
601
|
_html.push('</div>');
|