summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorondras <none@none>2012-02-19 12:22:01 +0100
committerondras <none@none>2012-02-19 12:22:01 +0100
commit7e53965c89f7ca37bcc74c25d64bde95cd53a7ba (patch)
tree0a22e573bcb3244a5388683384a11ce6f400823f /js
parentb76a6369e6bbea57213dff45a1ef26259bc374d0 (diff)
downloadwwwsqldesigner-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.js3
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;
}