The following piece of code is from https://github.com/tsi/inlineDisqussions/blob/master/inlineDisqussions.js
What is this piece of code doing please? I'd appreciate a plain English translation. Student here.
// Hide the discussion.
$('html').click(function(event) {
if($(event.target).parents('#disqussions_wrapper, .main-disqussion-link-wrp').length === 0) {
hideDisqussion();
}
});