blob: 1711d1374ac8f6f332c47787c14789181da84454 [file] [log] [blame]
/*
* SimpleID
*
* Copyright (C) Kelvin Mo 2009
*
* This program is licensed under the GPL.
*
* $Id$
*/
$(document).ready(function() {
$('input#edit-cancel').click(function() {
window.close();
return false;
});
$(document).keydown(function(e) {
if (e.which == 27) { // Close the window if user presses Esc
window.close();
return false;
}
});
});