add dashboard entitlement actions

This commit is contained in:
Anthony Mangano
2017-12-08 14:55:39 -05:00
parent 6388391da6
commit a6cb0fef1c
17 changed files with 546 additions and 17 deletions

View File

@@ -98,7 +98,7 @@ var accessible_modal = function(trigger, closeButtonId, modalId, mainPageId) {
});
// get modal to exit on escape key
$('.modal').on('keydown', function(e) {
$(modalId).on('keydown', function(e) {
var keyCode = e.keyCode || e.which;
// 27 is the javascript keycode for the ESC key
if (keyCode === 27) {