9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
$(document).ready(function () {
|
|
$('#cheatsheetLink').click(function() {
|
|
$('#cheatsheetModal').modal('show');
|
|
});
|
|
|
|
$('#cheatsheetModal .close-btn').click(function(e) {
|
|
$('#cheatsheetModal').modal('hide');
|
|
});
|
|
}); |