diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 16:31:29 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 16:31:29 +0100 |
commit | 145d9a09abb1f5535361ca98b5e98af5a38e5ad9 (patch) | |
tree | 41dd014778815940dde663d02f4c52ae990afdfc /core/js | |
parent | 60cba9962da352d96489e4eb4110612cac49966a (diff) | |
download | nextcloud-server-145d9a09abb1f5535361ca98b5e98af5a38e5ad9.tar.gz nextcloud-server-145d9a09abb1f5535361ca98b5e98af5a38e5ad9.zip |
Do not select input for all text input fields
Fix issue #6920
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/js.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/js/js.js b/core/js/js.js index cb177712a3a..d4d2583f1e5 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -884,11 +884,7 @@ function initCore() { $('a.action.delete').tipsy({gravity:'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); - $('input').tipsy({gravity:'w', fade:true}); - $('input[type=text]').focus(function(){ - this.select(); - }); } $(document).ready(initCore); |