Merge pull request #7132 from owncloud/issue/6920

Do not select input for all text input fields
This commit is contained in:
Jan-Christoph Borchardt 2014-02-17 15:01:03 +01:00
commit 84cd6e035e
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);