Skip to content

Instantly share code, notes, and snippets.

@davidtheclark
Last active December 23, 2015 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davidtheclark/6600678 to your computer and use it in GitHub Desktop.
Save davidtheclark/6600678 to your computer and use it in GitHub Desktop.
var mblConnect = {
$cont: $('#connect'),
$site: $('#site'),
isOpen: false,
$overlay: $('<div id="mbl-overlay" class="mbl-overlay js-connect-btn" />'),
_getBtns: function () {
return $('.js-connect-btn');
},
_open: function () {
// append and fade in the overlay
mblConnect.$site.append(mblConnect.$overlay);
mblConnect.$overlay.fadeIn();
// show the menu
mblConnect.$cont.slideToggle('fast');
// register that it's open
mblConnect.isOpen = true;
// re-enable, with the new button (the overlay)
mblConnect.enable();
},
_close: function () {
// fade out and remove the overlay
mblConnect.$overlay.fadeOut(function () {
mblConnect.$overlay.remove();
});
// hide the menu
mblConnect.$cont.slideToggle('fast');
// register that it's closed
mblConnect.isOpen = false;
},
_clicked: function () {
// a button has been clicked:
// open or close the menu, whichever's
// the opposite of the current state
if (mblConnect.isOpen) {
mblConnect._close();
} else {
mblConnect._open();
}
},
enable: function () {
// make all buttons work
var $btns = mblConnect._getBtns();
$btns.off().on('click', mblConnect._clicked);
}
};
mblConnect.enable();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment