- $('<div>')
- .attr('class', 'form-row')
- .appendTo($form)
- .append(
- $('<label>')
- .attr('for', 'center_marker')
- .append(
- $('<input>')
- .attr('id', 'center_marker')
- .attr('type', 'checkbox')
- .prop('checked', true)
- .bind('change', update))
- .append(I18n.t('javascripts.share.center_marker')));
-