Skip to content

Instantly share code, notes, and snippets.

@majornorth
Last active August 29, 2015 14:07
Show Gist options
  • Save majornorth/277fc695ae2bd5071a8d to your computer and use it in GitHub Desktop.
Save majornorth/277fc695ae2bd5071a8d to your computer and use it in GitHub Desktop.
toggle: function() {
if (this.isExpanded()) {
this.minimize();
if (show === true) {
this.isVisible = true;
$("#phrasebank-tooltip").tooltip("show");
} else {
this.isVisible = false;
$("#phrasebank-tooltip").tooltip("hide");
}
} else {
this.maximize();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment