1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 00:19:14 +00:00

fix create filter dialog when called from main UI, fix exception_error() parameter position errors

This commit is contained in:
Andrew Dolgov
2008-05-17 17:25:41 +01:00
parent dcbeb0e347
commit 438f2ce922
4 changed files with 41 additions and 33 deletions

View File

@@ -788,7 +788,7 @@ function moveToPost(mode) {
} */
} catch (e) {
exception_error(e, "moveToPost");
exception_error("moveToPost", e);
}
}
@@ -820,7 +820,7 @@ function toggleSelected(id) {
row.className = nc;
}
} catch (e) {
exception_error(e, "toggleSelected");
exception_error("toggleSelected", e);
}
}
@@ -831,7 +831,7 @@ function toggleUnread_afh(effect) {
elem.style.backgroundColor = "";
} catch (e) {
exception_error(e, "toggleUnread_afh");
exception_error("toggleUnread_afh", e);
}
}
@@ -1315,7 +1315,7 @@ function editTagsInsert() {
found_tags.selectedIndex = 0;
} catch (e) {
exception_error(e, "editTagsInsert");
exception_error("editTagsInsert", e);
}
}
@@ -1349,7 +1349,7 @@ function cdmArticleIsBelowViewport(id) {
}
} catch (e) {
exception_error(e, "cdmArticleIsVisible");
exception_error("cdmArticleIsVisible", e);
}
}
@@ -1369,7 +1369,7 @@ function cdmArticleIsAboveViewport(id) {
}
} catch (e) {
exception_error(e, "cdmArticleIsVisible");
exception_error("cdmArticleIsVisible", e);
}
}
@@ -1383,7 +1383,7 @@ function cdmScrollToArticleId(id) {
ctr.scrollTop = e.offsetTop;
} catch (e) {
exception_error(e, "cdmScrollToArticleId");
exception_error("cdmScrollToArticleId", e);
}
}
@@ -1413,7 +1413,7 @@ function cdmArticleIsActuallyVisible(id) {
return false;
} catch (e) {
exception_error(e, "cdmArticleIsVisible");
exception_error("cdmArticleIsVisible", e);
}
}
@@ -1491,7 +1491,7 @@ function cdmWatchdog() {
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
} catch (e) {
exception_error(e, "cdmWatchdog");
exception_error("cdmWatchdog", e);
}
}