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