summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-13 06:52:32 +0100
committerAndrew Dolgov <[email protected]>2005-12-13 06:52:32 +0100
commit386cbf27aa42980ad46322ba59f0ae550a2b9ac7 (patch)
tree86367cdcd9b26193084e9423582d1fda5d7635ef /functions.js
parent6a1ad084069c86359ab6e10d2b9ee5e87422c7d0 (diff)
combined article display mode (option COMBINED_DISPLAY_MODE), remove xml feed output
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index d901cbb90..b72c1157b 100644
--- a/functions.js
+++ b/functions.js
@@ -537,6 +537,21 @@ function getSelectedTableRowIds(content_id, prefix) {
}
+function toggleSelectRowById(sender, id) {
+ var row = document.getElementById(id);
+
+ if (sender.checked) {
+ if (!row.className.match("Selected")) {
+ row.className = row.className + "Selected";
+ }
+ } else {
+ if (row.className.match("Selected")) {
+ row.className = row.className.replace("Selected", "");
+ }
+ }
+}
+
+
function toggleSelectRow(sender) {
var parent_row = sender.parentNode.parentNode;