Added autoFocus to #shareWith autocomplete options

This commit is contained in:
Pete McFarlane 2013-09-11 11:45:32 +01:00
parent 4ab8dc9c08
commit 92b57c13c1

View file

@ -227,7 +227,7 @@ OC.Share={
}
});
}
$('#shareWith').autocomplete({minLength: 1, source: function(search, response) {
$('#shareWith').autocomplete({minLength: 1, autoFocus: true, source: function(search, response) {
// if (cache[search.term]) {
// response(cache[search.term]);
// } else {
@ -423,7 +423,7 @@ OC.Share={
dateFormat : 'dd-mm-yy'
});
}
}
};
$(document).ready(function() {
@ -512,7 +512,7 @@ $(document).ready(function() {
$(document).on('change', '#dropdown .permissions', function() {
if ($(this).attr('name') == 'edit') {
var li = $(this).parent().parent()
var li = $(this).parent().parent();
var checkboxes = $('.permissions', li);
var checked = $(this).is(':checked');
// Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck