1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/plugins/googlereaderimport/init.js

54 lines
1012 B
JavaScript
Raw Normal View History

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",
2013-03-31 07:24:33 +02:00
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;
}
}