diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-17 15:01:03 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-17 15:01:03 +0100 |
commit | 84cd6e035e5e01c5a3182bd73677371d08810b20 (patch) | |
tree | 007137ae02bd3d0a9717d8480df76c79bab6abd6 | |
parent | fe065f51140b5fc6b56f43f66e83a41bdba23693 (diff) | |
parent | 145d9a09abb1f5535361ca98b5e98af5a38e5ad9 (diff) | |
download | nextcloud-server-84cd6e035e5e01c5a3182bd73677371d08810b20.tar.gz nextcloud-server-84cd6e035e5e01c5a3182bd73677371d08810b20.zip |
Merge pull request #7132 from owncloud/issue/6920
Do not select input for all text input fields
-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); |