disable pub/mark effects in CDM

This commit is contained in:
Andrew Dolgov 2007-08-20 08:59:18 +01:00
parent 0ecd24999f
commit ace1a6da76
1 changed files with 12 additions and 4 deletions

View File

@ -411,8 +411,12 @@ function toggleMark(id) {
vfeedu.innerHTML = (+vfeedu.innerHTML) - 1; vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
} }
if (document.getElementById("headlinesList")) {
Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off}); Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
} else {
mark_img.src = "images/mark_unset.png";
mark_img.alt = "Set mark";
}
} }
var vfeedctr = document.getElementById("FEEDCTR--1"); var vfeedctr = document.getElementById("FEEDCTR--1");
@ -477,8 +481,12 @@ function togglePub(id) {
vfeedu.innerHTML = (+vfeedu.innerHTML) - 1; vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
} }
if (document.getElementById("headlinesList")) {
Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off}); Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
} else {
mark_img.src = "images/pub_unset.png";
mark_img.alt = "Publish";
}
} }
var vfeedctr = document.getElementById("FEEDCTR--2"); var vfeedctr = document.getElementById("FEEDCTR--2");