Skip to content

Instantly share code, notes, and snippets.

@rissajeanne
Created August 3, 2011 14:37
Show Gist options
  • Save rissajeanne/1122785 to your computer and use it in GitHub Desktop.
Save rissajeanne/1122785 to your computer and use it in GitHub Desktop.
addTag : function(ev) {
ev.preventDefault();
window.ABS.spi.leftSidebar.showTransferAnimation(ev.target);
$('.tools-nav li.active, .actions li.active').removeClass('active');
$('.tools-nav li a.tags').closest('li').addClass('active');
window.ABS.spi.leftSidebar.makePanelActive('tagCreate');
},
addNote : function(ev) {
ev.preventDefault();
window.ABS.spi.leftSidebar.showTransferAnimation(ev.target);
$('.tools-nav li.active, .actions li.active').removeClass('active');
$('.tools-nav li a.notebook').closest('li').addClass('active');
window.ABS.spi.leftSidebar.makePanelActive('noteCreate');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment