Skip to content

Instantly share code, notes, and snippets.

@brucecrevensten
Created May 9, 2014 21:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brucecrevensten/860b02c5dffd35790a57 to your computer and use it in GitHub Desktop.
Save brucecrevensten/860b02c5dffd35790a57 to your computer and use it in GitHub Desktop.
snap drupal comm charts modal example
$('#modal_name_id').button({
text: false,
icons: {
primary: 'ui-icon-help'
}
}).click(function(e) {
$('#modal_block').show().dialog({
draggable: false,
modal: true,
title: 'About scenarios',
resizable: false,
show: 'fade',
hide: 'fade',
width: '700px',
zindex: 50000,
buttons: {
'Close': function(e) {
$(this).dialog('close');
}
}
});
});
<button id="modal_name_id">About scenarios&hellip;</button>
<div id="modal_block" class="about_dialog" style="display: none;">
<p>Blah blah blah</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment