Skip to content

Instantly share code, notes, and snippets.

View sbkinney's full-sized avatar

Sean Kinney sbkinney

View GitHub Profile
$(function(){
var tagMap = { "An Organization of Extraordinary Gentlemen": ["peg_leg", "mast"] };
var currentOrg = HelpCenter.user.organizations.length ? HelpCenter.user.organizations[0].name : null;
if (currentOrg) {
$('body').on('DOMNodeInserted', 'ul', function(event){
for (var i = 0; i < tagMap[currentOrg].length; i++) {
$('#' + tagMap[currentOrg][i]).remove();
}