pixl-xyapp 2.1.15 → 2.1.17

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
@@ -1596,8 +1596,8 @@ fieldset.info_fieldset > legend {
1596
1596
  cursor: default;
1597
1597
  }
1598
1598
  fieldset.info_fieldset > .tool_desc {
1599
- margin-top: 4px;
1600
- font-size: 11px;
1599
+ margin-bottom: 10px;
1600
+ font-size: 12px;
1601
1601
  color: var(--label-color);
1602
1602
  }
1603
1603
 
@@ -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
@@ -163,7 +163,7 @@ var app = {
163
163
 
164
164
  handleKeyDown: function(event) {
165
165
  // send keydown event to page if text element isn't current focused
166
- if (document.activeElement && document.activeElement.tagName.match(/^(INPUT|TEXTAREA)$/)) return;
166
+ if (document.activeElement && (document.activeElement.tagName.match(/^(INPUT|TEXTAREA)$/) || (document.activeElement.className == 'CodeMirror-code'))) return;
167
167
 
168
168
  if (this.page_manager && this.page_manager.current_page_id) {
169
169
  var id = this.page_manager.current_page_id;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
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",