/ Gists / Close on document, but not on this element.
On gists

Close on document, but not on this element.

jQuery Helpers-Filters-Plugins
Close on document, but not on this element.

on-document-click-close.js Raw #

    $(document).on('click', function(e){

    	if ($(e.target).closest('.user-sign-in-form').length === 0) 
    	{
       		$('.user-sign-in-form').fadeToggle();
    	}

    });