- var $shortLink, $longLink;
-
- $('<ul>')
- .appendTo($linkSection)
- .append($('<li>')
- .append($longLink = $('<a>')
- .text(I18n.t('javascripts.share.long_link'))))
- .append($('<li>')
- .append($shortLink = $('<a>')
- .text(I18n.t('javascripts.share.short_link'))));
-
- // Embeddable HTML
-
- var $embedSection = $('<div>')
- .attr('class', 'section share-html')
- .appendTo($ui);
-
- $('<h4>')
- .text(I18n.t('javascripts.share.embed'))
- .appendTo($embedSection);
+ $('<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();
+ });