mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
12 lines
429 B
JavaScript
12 lines
429 B
JavaScript
$(document).ready( function() {
|
|
$('div#image_picker div.small_photo').click( function() {
|
|
$('#image_url_field').val($(this).attr('id'));
|
|
|
|
$('div#image_picker div.small_photo').removeClass('selected');
|
|
$("div#image_picker div.small_photo input[type='checkbox']").attr("checked", false);
|
|
|
|
$(this).addClass('selected');
|
|
$(this).children("input[type='checkbox']").attr("checked", true);
|
|
});
|
|
});
|