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