+ $('<div>')
+ .attr('class', 'sidebar_heading')
+ .appendTo($ui)
+ .append(
+ $('<span>')
+ .text(I18n.t('javascripts.close'))
+ .attr('class', 'icon close')
+ .bind('click', toggle))
+ .append(
+ $('<h4>')
+ .text(I18n.t('javascripts.share.title')));
+
+ // Link / Embed
+
+ var $linkSection = $('<div>')
+ .attr('class', 'section share-link')
+ .appendTo($ui);
+
+ $('<h4>')
+ .text(I18n.t('javascripts.share.link'))
+ .appendTo($linkSection);
+
+ var $form = $('<form>')
+ .attr('class', 'standard-form')
+ .appendTo($linkSection);
+
+ $('<div>')
+ .attr('class', 'form-row')
+ .appendTo($form)
+ .append(
+ $('<label>')
+ .attr('for', 'link_marker')
+ .append(
+ $('<input>')
+ .attr('id', 'link_marker')
+ .attr('type', 'checkbox')
+ .bind('change', toggleMarker))
+ .append(I18n.t('javascripts.share.include_marker')));
+
+ $('<div>')
+ .attr('class', 'share-tabs')
+ .appendTo($form)
+ .append($('<a>')
+ .attr('class', 'active')
+ .attr('for', 'long_input')
+ .attr('id', 'long_link')
+ .text(I18n.t('javascripts.share.long_link')))
+ .append($('<a>')
+ .attr('for', 'short_input')
+ .attr('id', 'short_link')
+ .text(I18n.t('javascripts.share.short_link')))
+ .append($('<a>')
+ .attr('for', 'embed_html')
+ .attr('href', '#')
+ .text(I18n.t('javascripts.share.embed')))
+ .on('click', 'a', function(e) {
+ e.preventDefault();
+ var id = '#' + $(this).attr('for');
+ $linkSection.find('.share-tabs a')
+ .removeClass('active');
+ $(this).addClass('active');
+ $linkSection.find('.share-tab')
+ .hide();
+ $linkSection.find('.share-tab:has(' + id + ')')
+ .show()
+ .find('input, textarea')
+ .select();
+ });
+
+ $('<div>')
+ .attr('class', 'form-row share-tab')
+ .css('display', 'block')
+ .appendTo($form)
+ .append($('<input>')
+ .attr('id', 'long_input')
+ .attr('type', 'text')
+ .on('click', select));
+
+ $('<div>')
+ .attr('class', 'form-row share-tab')
+ .appendTo($form)
+ .append($('<input>')
+ .attr('id', 'short_input')
+ .attr('type', 'text')
+ .on('click', select));
+
+ $('<div>')
+ .attr('class', 'form-row share-tab')
+ .appendTo($form)
+ .append(
+ $('<textarea>')
+ .attr('id', 'embed_html')
+ .on('click', select))
+ .append(
+ $('<p>')
+ .attr('class', 'deemphasize')
+ .text(I18n.t('javascripts.share.paste_html'))
+ .appendTo($linkSection));
+
+ // Geo URI
+
+ var $geoUriSection = $('<div>')
+ .attr('class', 'section share-geo-uri')