summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-02-07 16:31:29 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-02-07 16:31:29 +0100
commit145d9a09abb1f5535361ca98b5e98af5a38e5ad9 (patch)
tree41dd014778815940dde663d02f4c52ae990afdfc /core/js
parent60cba9962da352d96489e4eb4110612cac49966a (diff)
downloadnextcloud-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.js4
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);