Skip to content

Instantly share code, notes, and snippets.

@amorey
Created March 26, 2015 14:49
Show Gist options
  • Save amorey/ba26bf4c48aac5b9e0a5 to your computer and use it in GitHub Desktop.
Save amorey/ba26bf4c48aac5b9e0a5 to your computer and use it in GitHub Desktop.
function showSidenav() {
// show overlay
var $overlayEl = $(mui.overlay('on'));
// show element
$sidenav
.appendTo($overlayEl)
.show()
.animate({left: '0px'}, 150);
};
$('#sidenav-toggle').on('click', showSidenav);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment