From 145d9a09abb1f5535361ca98b5e98af5a38e5ad9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 7 Feb 2014 16:31:29 +0100 Subject: [PATCH] Do not select input for all text input fields Fix issue #6920 --- core/js/js.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index cb177712a3..d4d2583f1e 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);