1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:55:55 +00:00
Files
tt-rss/plugins/nsfw/init.js
Andrew Dolgov 1b9f9925cf add nsfw plugin
2013-02-23 16:02:29 +04:00

13 lines
212 B
JavaScript

function nsfwShow(elem) {
try {
content = elem.parentNode.getElementsBySelector("div.nswf.content")[0];
if (content) {
Element.toggle(content);
}
} catch (e) {
exception_error("nswfSHow", e);
}
}