GiveToken / GiftBox

Repository for Sizzle
0 stars 0 forks source link

[1074] Fixes disabled back button #1076

Closed shreydesai closed 8 years ago

shreydesai commented 8 years ago

Added patch to fix disabled back button when the Esc button is clicked.

$(document).keyup(function(e){
    if(e.keyCode === 27) {
      $('.interest-dialog').each(function (i, dialog){
        dialog.close();
      });
      openedInterestPopup = false;
      enableBackButton();
    }
 });
wogsland commented 8 years ago

Can you create a branch with a different name so I can test it easily locally?

shreydesai commented 8 years ago

Making a new branch with a different name.