summaryrefslogtreecommitdiff
path: root/plugins/googlereaderimport/init.js
diff options
context:
space:
mode:
authorHeiko Adams <[email protected]>2015-11-30 10:29:44 +0100
committerHeiko Adams <[email protected]>2015-11-30 10:29:44 +0100
commit05761788b7b5a8a7e6c14333669acd0793886223 (patch)
tree464ccc3d98900e5dcf1a437662056161fa1280a4 /plugins/googlereaderimport/init.js
parent635ecdb9fa039adb8a0e8ead045bfda023e72bc4 (diff)
parent6f5d9c6889b6376527d7598857ac8816cf7980ab (diff)
Merge remote-tracking branch 'origin/master' into german-translation
Diffstat (limited to 'plugins/googlereaderimport/init.js')
-rw-r--r--plugins/googlereaderimport/init.js53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/googlereaderimport/init.js b/plugins/googlereaderimport/init.js
deleted file mode 100644
index 043952c75..000000000
--- a/plugins/googlereaderimport/init.js
+++ /dev/null
@@ -1,53 +0,0 @@
-function starredImportComplete(iframe) {
- try {
- if (!iframe.contentDocument.body.innerHTML) return false;
-
- Element.show(iframe);
-
- notify('');
-
- if (dijit.byId('starredImportDlg'))
- dijit.byId('starredImportDlg').destroyRecursive();
-
- var content = iframe.contentDocument.body.innerHTML;
-
- if (content) Element.hide(iframe);
-
- dialog = new dijit.Dialog({
- id: "starredImportDlg",
- title: __("Google Reader Import"),
- style: "width: 600px",
- onCancel: function() {
- Element.hide(iframe);
- this.hide();
- },
- execute: function() {
- Element.hide(iframe);
- this.hide();
- },
- content: content});
-
- dialog.show();
-
- } catch (e) {
- exception_error("starredImportComplete", e);
- }
-}
-
-function starredImport() {
-
- var starred_file = $("starred_file");
-
- if (starred_file.value.length == 0) {
- alert(__("Please choose a file first."));
- return false;
- } else {
- notify_progress("Importing, please wait...", true);
-
- Element.show("starred_upload_iframe");
-
- return true;
- }
-}
-
-