pixl-xyapp 2.1.15 → 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/boilerplate.css +1 -1
- package/css/normalize.css +1 -1
- package/js/dialog.js +3 -0
- package/package.json +1 -1
package/css/boilerplate.css
CHANGED
package/css/normalize.css
CHANGED
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