Do not select input for all text input fields

Fix issue #6920
This commit is contained in:
Joas Schilling 2014-02-07 16:31:29 +01:00
parent 60cba9962d
commit 145d9a09ab
1 changed files with 0 additions and 4 deletions

View File

@ -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);