ps-toolkit-ui 1.9.47 → 1.9.48
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/bundles/ps-toolkit-ui.umd.js +12 -13
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/modal.class.js +13 -13
- package/fesm2015/ps-toolkit-ui.js +12 -12
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3164,21 +3164,20 @@
|
|
|
3164
3164
|
});
|
|
3165
3165
|
};
|
|
3166
3166
|
ModalClass.prototype.hide = function () {
|
|
3167
|
-
var _this = this;
|
|
3168
3167
|
$__namespace('body').removeClass('open-modal');
|
|
3169
3168
|
$__namespace('#' + this.id + 'Modal').fadeOut(300, function () {
|
|
3170
|
-
if (
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
}
|
|
3176
|
-
if (
|
|
3177
|
-
|
|
3178
|
-
}
|
|
3179
|
-
if (
|
|
3180
|
-
|
|
3181
|
-
}
|
|
3169
|
+
// if (this.form && this.form.name !== 'Confirm' && this.form.name !== 'Alert'){
|
|
3170
|
+
// this.form.clear();
|
|
3171
|
+
// if (this.form.onHideModal){
|
|
3172
|
+
// this.form.onHideModal();
|
|
3173
|
+
// }
|
|
3174
|
+
// }
|
|
3175
|
+
// if (this.table && this.table.form){
|
|
3176
|
+
// this.table.form.clear();
|
|
3177
|
+
// }
|
|
3178
|
+
// if (this.onHide){
|
|
3179
|
+
// this.onHide();
|
|
3180
|
+
// }
|
|
3182
3181
|
});
|
|
3183
3182
|
};
|
|
3184
3183
|
return ModalClass;
|