diff options
author | ondras <none@none> | 2012-02-19 12:22:01 +0100 |
---|---|---|
committer | ondras <none@none> | 2012-02-19 12:22:01 +0100 |
commit | 7e53965c89f7ca37bcc74c25d64bde95cd53a7ba (patch) | |
tree | 0a22e573bcb3244a5388683384a11ce6f400823f /js | |
parent | b76a6369e6bbea57213dff45a1ef26259bc374d0 (diff) | |
download | wwwsqldesigner-7e53965c89f7ca37bcc74c25d64bde95cd53a7ba.zip wwwsqldesigner-7e53965c89f7ca37bcc74c25d64bde95cd53a7ba.tar.gz wwwsqldesigner-7e53965c89f7ca37bcc74c25d64bde95cd53a7ba.tar.bz2 |
preventing default f2 in opera, thanks to ivan abdulin
Diffstat (limited to 'js')
-rw-r--r-- | js/wwwsqldesigner.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/wwwsqldesigner.js b/js/wwwsqldesigner.js index 9ce3156..113ce84 100644 --- a/js/wwwsqldesigner.js +++ b/js/wwwsqldesigner.js @@ -1475,6 +1475,9 @@ SQL.IO.prototype.importresponse = function(data, code) { SQL.IO.prototype.press = function(e) { switch (e.keyCode) { case 113: + if (OZ.opera) { + e.preventDefault(); + } this.quicksave(e); break; } |