summaryrefslogtreecommitdiff
path: root/plugins/import_export
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-02 20:56:30 +0300
committerAndrew Dolgov <[email protected]>2018-12-02 20:56:30 +0300
commit526389b2d380177490605037fdc3a24ebc688fac (patch)
tree65d79cebf0811e8927efeffac9f1e11b4552a63f /plugins/import_export
parent495248dd9783985750591c050d055ac4c2cf1712 (diff)
update notify_* calls to use Notify
Diffstat (limited to 'plugins/import_export')
-rw-r--r--plugins/import_export/import_export.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/import_export/import_export.js b/plugins/import_export/import_export.js
index 780f6bfc7..56a2a5c3e 100644
--- a/plugins/import_export/import_export.js
+++ b/plugins/import_export/import_export.js
@@ -14,7 +14,7 @@ function exportData() {
style: "width: 600px",
prepare: function() {
- notify_progress("Loading, please wait...");
+ Notify.progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "op=pluginhandler&plugin=import_export&method=exportrun&offset=" + exported,
@@ -53,7 +53,7 @@ function exportData() {
exception_error("exportData", e, transport.responseText);
}
- notify('');
+ Notify.close();
} });
@@ -81,7 +81,7 @@ function dataImportComplete(iframe) {
Element.hide(iframe);
- notify('');
+ Notify.close();
if (dijit.byId('dataImportDlg'))
dijit.byId('dataImportDlg').destroyRecursive();
@@ -112,7 +112,7 @@ function importData() {
alert(__("Please choose the file first."));
return false;
} else {
- notify_progress("Importing, please wait...", true);
+ Notify.progress("Importing, please wait...", true);
Element.show("data_upload_iframe");