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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/util.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.1.36",
3
+ "version": "1.1.37",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
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>');