Files
edx-platform/lms/static/js/wiki/cheatsheet.js
2012-08-27 18:30:38 -04:00

9 lines
247 B
JavaScript

$(document).ready(function () {
$('#cheatsheetLink').click(function() {
$('#cheatsheetModal').modal('show');
});
$('#cheatsheetModal .close-btn').click(function(e) {
$('#cheatsheetModal').modal('hide');
});
});