Browse Source

Merge pull request #7132 from owncloud/issue/6920

Do not select input for all text input fields
remotes/origin/ldap_group_count
Jan-Christoph Borchardt 12 years ago
parent
commit
84cd6e035e
  1. 4
      core/js/js.js

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

Loading…
Cancel
Save