ecinc-cloud-yoabase 9.5.6 → 9.5.8
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/lib/ecyoabase.common.js +11 -3
- package/lib/ecyoabase.umd.js +11 -3
- package/lib/ecyoabase.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/ecyoabase.common.js
CHANGED
|
@@ -182375,9 +182375,17 @@ ecinc_attr_panel.init = function () {
|
|
|
182375
182375
|
ecinc_attr_panel.setDrag = function () {
|
|
182376
182376
|
jquery_default()('.right-form').draggable();
|
|
182377
182377
|
};
|
|
182378
|
-
|
|
182379
|
-
|
|
182380
|
-
|
|
182378
|
+
try {
|
|
182379
|
+
jquery_default()('.right-form').draggable({
|
|
182380
|
+
containment: '#center'
|
|
182381
|
+
});
|
|
182382
|
+
} catch (e) {
|
|
182383
|
+
setTimeout(function () {
|
|
182384
|
+
jquery_default()('.right-form').draggable({
|
|
182385
|
+
containment: '#center'
|
|
182386
|
+
});
|
|
182387
|
+
}, 500);
|
|
182388
|
+
}
|
|
182381
182389
|
ecinc_attr_panel.event = function () {
|
|
182382
182390
|
jquery_default()('body').on('click', '.process', function () {
|
|
182383
182391
|
jquery_default()('.right-form').show();
|
package/lib/ecyoabase.umd.js
CHANGED
|
@@ -182384,9 +182384,17 @@ ecinc_attr_panel.init = function () {
|
|
|
182384
182384
|
ecinc_attr_panel.setDrag = function () {
|
|
182385
182385
|
jquery_default()('.right-form').draggable();
|
|
182386
182386
|
};
|
|
182387
|
-
|
|
182388
|
-
|
|
182389
|
-
|
|
182387
|
+
try {
|
|
182388
|
+
jquery_default()('.right-form').draggable({
|
|
182389
|
+
containment: '#center'
|
|
182390
|
+
});
|
|
182391
|
+
} catch (e) {
|
|
182392
|
+
setTimeout(function () {
|
|
182393
|
+
jquery_default()('.right-form').draggable({
|
|
182394
|
+
containment: '#center'
|
|
182395
|
+
});
|
|
182396
|
+
}, 500);
|
|
182397
|
+
}
|
|
182390
182398
|
ecinc_attr_panel.event = function () {
|
|
182391
182399
|
jquery_default()('body').on('click', '.process', function () {
|
|
182392
182400
|
jquery_default()('.right-form').show();
|