Quantcast

New NSFW tag to hide content.

binary visions

The voice of reason
Jun 13, 2002
22,143
1,231
NC
I added a NSFW tag to hide content that might not be okay to pop up on screens for monkeys at work.

Same way other tags work:

[ nsfw ] <image or content> [ /nsfw ]

Gives you this:

<image or content>


Just remove the spaces in the tags.

This is not carte blanche to post NSFW content. The rules haven't changed - we aren't an adult site and there are lots of other places to go for scantily clad women. Just because you hide it in the tags doesn't mean that you won't be banned.

This is strictly for images in topical posts that might not be good for work monkeys who have people walking around them.

Play nice, monkeys :monkey:
 

slyfink

Turbo Monkey
Sep 16, 2008
9,721
5,508
Ottawa, Canada

So apparently this no longer works?


This seems to be a casualty of the last upgrade or migration or something. Any plans to fix it, @binary visions ?
I agree... Would be nice. I was perusing the random picture thread the other day with my kid watching over my shoulder... Only just avoided an awkward conversation I'm not planning on having just yet! I know there's a workaround, but as I recall it's not intuitive (the way the nsfw tags were)...
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,981
8,464
Exit, CO
I agree... Would be nice. I was perusing the random picture thread the other day with my kid watching over my shoulder... Only just avoided an awkward conversation I'm not planning on having just yet! I know there's a workaround, but as I recall it's not intuitive (the way the nsfw tags were)...
Using the "SPOILER" tag thing seems to work...
 

binary visions

The voice of reason
Jun 13, 2002
22,143
1,231
NC
I'll see if I can restore the NSFW tag later; it's just a mirror of the spoiler tag so I can't imagine it'll be all that hard, but apparently they changed the styling parameters of the spoiler tag somewhere along the way.
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,981
8,464
Exit, CO
What does the Inline Spoiler tag do?

EDIT: Oh that's cool as hell! I wonder if it works on images?



ANSWER: It doesn't.
 

Full Trucker

Frikkin newb!!!
Feb 26, 2003
10,981
8,464
Exit, CO
Now I'm just dicking around...

Using the Inline Code might be good if I want to talk about a file like bluenote.js or something, but to put code in here (why would anyone do that??) use the Code one.

JavaScript:
$(document).ready(function() {
    "use strict";

    // Scroll To Top

    $(window).on('scroll', function() {
        if ($(this).scrollTop() > 600) {
            $('.return-to-top').fadeIn();
        } else {
            $('.return-to-top').fadeOut();
        }
    });

    $('.return-to-top').on('click', function() {
        $('html, body').animate({
            scrollTop: 0
        }, 1500);
        return false;
    });

    // Sticky Header

    $('#sticky-header').sticky({
        topSpacing: 0
    });

    // Smooth Scrolling

    $('a.smooth-menu').bind("click", function(event) {
        event.preventDefault();
        var anchor = $(this);
        $('html, body').stop().animate({
            scrollTop: $(anchor.attr('href')).offset().top - 0
        }, 1200, 'easeInOutExpo');
    });

    // Scrollspy

    $('body').scrollspy({
        target: '.navbar-collapse',
        offset: 0
    });

    // Close mobile menu on click

    $('.navbar-collapse ul li a:not(.dropdown-toggle)').click(function() {
        $('.navbar-toggle:visible').click();
    });

});
 

6thElement

Schrodinger's Immigrant
Jul 29, 2008
16,839
14,322
Now I'm just dicking around...

Using the Inline Code might be good if I want to talk about a file like bluenote.js or something, but to put code in here (why would anyone do that??) use the Code one.

JavaScript:
$(document).ready(function() {
    "use strict";

    // Scroll To Top

    $(window).on('scroll', function() {
        if ($(this).scrollTop() > 600) {
            $('.return-to-top').fadeIn();
        } else {
            $('.return-to-top').fadeOut();
        }
    });

    $('.return-to-top').on('click', function() {
        $('html, body').animate({
            scrollTop: 0
        }, 1500);
        return false;
    });

    // Sticky Header

    $('#sticky-header').sticky({
        topSpacing: 0
    });

    // Smooth Scrolling

    $('a.smooth-menu').bind("click", function(event) {
        event.preventDefault();
        var anchor = $(this);
        $('html, body').stop().animate({
            scrollTop: $(anchor.attr('href')).offset().top - 0
        }, 1200, 'easeInOutExpo');
    });

    // Scrollspy

    $('body').scrollspy({
        target: '.navbar-collapse',
        offset: 0
    });

    // Close mobile menu on click

    $('.navbar-collapse ul li a:not(.dropdown-toggle)').click(function() {
        $('.navbar-toggle:visible').click();
    });

});
nerd


:D