mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3913 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
function BC_key(e){
|
|
// Mozilla compatible
|
|
var key;
|
|
if(window.event) {
|
|
// for IE, e.keyCode or window.event.keyCode can be used
|
|
key = e.keyCode;
|
|
}else if(e.which) {
|
|
// netscape
|
|
key = e.which; }
|
|
if (key==13){document.forms['search'].submit();}
|
|
} |