- .append($('<label>')
- .attr('for', 'long_input')
- .text(I18n.t('javascripts.share.long_link')))
- .append($('<a>')
- .attr('id', 'long_link')
- .append($('<span>')
- .attr('class', 'icon link')))
- .append($('<input>')
- .attr('id', 'long_input')
- .attr('type', 'text')
- .on('click', select));
-
- $('<div>')
- .attr('class', 'form-row')
+ .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();
+ });
+
+ $("<div>")
+ .attr("class", "share-tab")
+ .css("display", "block")