Skip to content

Instantly share code, notes, and snippets.

@mamod
Created September 17, 2013 02:22
Show Gist options
  • Save mamod/6589362 to your computer and use it in GitHub Desktop.
Save mamod/6589362 to your computer and use it in GitHub Desktop.
//trigger modal view
$('.someElement').click(function(){
$('#modal').modal('view',{
easing : 'linear',
position : 'bottom',
animation : 'top left',
speed : 1000
});
});
//trigger modal close
$('.someOtherElement').click(function(){
$('#modal').modal('close');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment