# HG changeset patch # User Atul Varma # Date 1272210326 25200 # Node ID a196cc29fffb79aeef6adcdd3eae0c17171cf080 # Parent 88b856b1353bdd363bb7ee81e6f748bf78f3ab2a ESC in dialog now makes it go away diff -r 88b856b1353b -r a196cc29fffb js/modules/app.js --- a/js/modules/app.js Sun Apr 25 08:30:50 2010 -0700 +++ b/js/modules/app.js Sun Apr 25 08:45:26 2010 -0700 @@ -270,6 +270,16 @@ $(this).fadeOut(); }); + function dismissDialogOnEscape(event) { + if (event.keyCode == 27) + $(this).fadeOut(); + } + + // For Safari. + $(".dialog").keyup(dismissDialogOnEscape); + // For Firefox. + $(".dialog").keypress(dismissDialogOnEscape); + function setupDocumentTitleChanger(document) { const BASE_TITLE = document.title;