Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created April 6, 2013 15:42
Show Gist options
  • Save pbrewczynski/5326536 to your computer and use it in GitHub Desktop.
Save pbrewczynski/5326536 to your computer and use it in GitHub Desktop.
var rollOut = function() {
$iframeTable.fadeIn();
$iframeTable.css({display: "block"});
$(this).animate({width: "100%"});
$rezerwujImg.fadeOut();
$reservationSlider.off("click").click(hide);
};
var hide = function() {
$iframeTable.fadeOut();
$(this).animate({width: "30px"});
$rezerwujImg.fadeIn();
$reservationSlider.off("click").click(rollOut);
};
$reservationSlider.click(rollOut);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment