Skip to content

Instantly share code, notes, and snippets.

@AndreyKopylov
Last active August 29, 2015 14:18
Show Gist options
  • Save AndreyKopylov/f58a1118e55f519df5a8 to your computer and use it in GitHub Desktop.
Save AndreyKopylov/f58a1118e55f519df5a8 to your computer and use it in GitHub Desktop.
var
slide12 = false,
slide13 = false;
$multiChartsWrapSlide1.on('click', function () {
// code
slide12 = true;
});
if (slide12 = true) {
$multiChartsWrapSlide1.on('click', function () {
// code
slide13 = true;
});
@mbarinov
Copy link

$multiChartsWrapSlide1.on('click', function () {
// code
if(!slide12) {
return falsel
}
slide13 = true;
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment