Skip to content

Instantly share code, notes, and snippets.

@GoodNew5
Last active June 3, 2017 00:17
Show Gist options
  • Save GoodNew5/2ccf0d797819e19ae36212171e0a0145 to your computer and use it in GitHub Desktop.
Save GoodNew5/2ccf0d797819e19ae36212171e0a0145 to your computer and use it in GitHub Desktop.
controller.js
function uiController(domElement){
var data = domElement.data();
domElement.toggleClass('active');
$(data.target).toggleClass('active');
$(data.remove).removeClass('active');
}
$(controller).click(function(e){
uiController($(this));
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment