1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 10:16:39 +00:00

editFeedDlg: fix hotkey disabling bug

This commit is contained in:
Andrew Dolgov
2008-02-20 13:45:57 +01:00
parent 0b6cffa868
commit c67d2990c7
2 changed files with 7 additions and 4 deletions

View File

@@ -634,8 +634,6 @@ function catchupCurrentFeed() {
function editFeedDlg(feed) {
try {
disableHotkeys();
if (!feed) {
alert(__("Please select some feed first."));
return;
@@ -653,7 +651,9 @@ function editFeedDlg(feed) {
} else {
query = "backend.php?op=pref-labels&subop=edit&id=" + param_escape(-feed-11);
}
disableHotkeys();
new Ajax.Request(query, {
onComplete: function(transport) {
infobox_callback2(transport);