pixl-xyapp 2.1.14 → 2.1.16

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/css/base.css CHANGED
@@ -1742,6 +1742,7 @@ body.dark #dialog, body.dark .dialog {
1742
1742
  max-width: 500px;
1743
1743
  margin-left: auto;
1744
1744
  margin-right: auto;
1745
+ z-index: 0;
1745
1746
  }
1746
1747
  .dialog.inline.wider {
1747
1748
  max-width: 650px;
@@ -1,4 +1,4 @@
1
- /*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */
1
+ /* HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */
2
2
 
3
3
  /* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
4
4
  /*
package/css/normalize.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
1
+ /* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
2
 
3
3
  /* Document
4
4
  ========================================================================== */
package/js/base.js CHANGED
@@ -157,6 +157,7 @@ var app = {
157
157
  var id = this.page_manager.current_page_id;
158
158
  var page = this.page_manager.find(id);
159
159
  if (page && page.onResizeDelay) page.onResizeDelay( get_inner_window_size() );
160
+ if (page && page.updateBoxButtonFloaterState) page.updateBoxButtonFloaterState();
160
161
  }
161
162
  },
162
163
 
package/js/dialog.js CHANGED
@@ -7,6 +7,7 @@ var Dialog = {
7
7
  clickBlock: false,
8
8
  progress: null,
9
9
  onHide: null,
10
+ onDragDrop: null,
10
11
 
11
12
  show: function(html, click_block) {
12
13
  // show dialog, auto-size and center
@@ -99,6 +100,8 @@ var Dialog = {
99
100
  this.onHide = null;
100
101
  callback();
101
102
  }
103
+
104
+ this.onDragDrop = null;
102
105
  }
103
106
  },
104
107
 
@@ -124,7 +127,7 @@ var Dialog = {
124
127
  var extra_classes = '';
125
128
  if (counter == 1.0) extra_classes = 'indeterminate';
126
129
 
127
- html += '<div id="d_progress_bar_cont" class="progress_bar_container '+extra_classes+'" style="width:196px; margin:0 auto 0 auto;">';
130
+ html += '<div id="d_progress_bar_cont" class="progress_bar_container '+extra_classes+'" style="width:196px; margin:0 auto 0 auto;" role="progressbar">';
128
131
  html += '<div id="d_progress_bar" class="progress_bar_inner" style="width:'+cx+'px;"></div>';
129
132
  html += '</div>';
130
133
 
package/js/tools.js CHANGED
@@ -169,10 +169,10 @@ function get_text_from_seconds(sec, abbrev, no_secondary) {
169
169
  } // min>59
170
170
  } // sec>59
171
171
 
172
- var text = p_amt + "&nbsp;" + p_text;
172
+ var text = p_amt + " " + p_text;
173
173
  if ((p_amt != 1) && !abbrev) text += "s";
174
174
  if (s_amt && !no_secondary) {
175
- text += ", " + s_amt + "&nbsp;" + s_text;
175
+ text += ", " + s_amt + " " + s_text;
176
176
  if ((s_amt != 1) && !abbrev) text += "s";
177
177
  }
178
178
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.14",
3
+ "version": "2.1.16",
4
4
  "description": "Front-end web application and theme for xyOps.",
5
5
  "author": "Joseph Huckaby <jhuckaby@pixlcore.com>",
6
6
  "homepage": "https://github.com/pixlcore/pixl-xyapp",