Is there a way to hide the UserVoice tab?
Inspecting the UserVoice object in firebug I see the functions
hidePopupWidget()
showPopupWidget()
showTab()
but no hideTab()
I would like to programmatically control the show and hide of the tab.
I ended up just setting tab element to css display:none;
e.g. $("#uvTab").hide();