Skip to content

Instantly share code, notes, and snippets.

@tonysaffo
Created October 15, 2018 09:35
Show Gist options
  • Save tonysaffo/fde2005bebe637079524373f3e154319 to your computer and use it in GitHub Desktop.
Save tonysaffo/fde2005bebe637079524373f3e154319 to your computer and use it in GitHub Desktop.
// HIDDEN INFO ICON SLIDE DOWN
$(window).click(function(){
$('.subtask-wrapper .module-header > .hidden-info').slideUp();
});
$(document).delegate('.subtask-wrapper .module-header > .icon', "click", function(e){
e.stopImmediatePropagation();
$(this).siblings('.hidden-info').slideToggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment