$('<h4>')
.text(I18n.t('javascripts.share.title')));
- // Link / Embed
+ // Link
var $linkSection = $('<div>')
.attr('class', 'section share-link')
.attr('type', 'text')
.on('click', select));
+ // Embed
+
+ var $embedSection = $('<div>')
+ .attr('class', 'section share-embed')
+ .appendTo($ui);
+
+ var $form = $('<form>')
+ .attr('class', 'standard-form')
+ .appendTo($embedSection);
+
$('<div>')
.attr('class', 'form-row')
.appendTo($form)