- .append($('<label>')
- .attr('class', 'active')
- .attr('for', 'long_input')
- .text(I18n.t('javascripts.share.long_link')))
- .append($('<label>')
- .attr('for', 'short_input')
- .text(I18n.t('javascripts.share.short_link')))
- .append($('<label>')
- .attr('for', 'embed_html')
- .text(I18n.t('javascripts.share.embed')))
- .on('click', 'label', function() {
- var id = '#' + $(this).attr('for');
- $linkSection.find('.share-tabs label')
- .removeClass('active');
- $(this).addClass('active');
- $linkSection.find('.share-tab').hide();
- $linkSection.find('.share-tab:has(' + id + ')').show();
+ .append($("<a class='btn btn-primary'>")
+ .addClass("active")
+ .attr("for", "long_input")
+ .attr("id", "long_link")
+ .text(I18n.t("javascripts.share.long_link")))
+ .append($("<a class='btn btn-primary'>")
+ .attr("for", "short_input")
+ .attr("id", "short_link")
+ .text(I18n.t("javascripts.share.short_link")))
+ .append($("<a class='btn btn-primary'>")
+ .attr("for", "embed_html")
+ .attr("href", "#")
+ .text(I18n.t("javascripts.share.embed")))
+ .on("click", "a", function (e) {
+ e.preventDefault();
+ var id = "#" + $(this).attr("for");
+ $(this).siblings("a")
+ .removeClass("active");
+ $(this).addClass("active");
+ $linkSection.find(".share-tab")
+ .hide();
+ $linkSection.find(".share-tab:has(" + id + ")")
+ .show()
+ .find("input, textarea")
+ .select();