Sha256: e541a95070c4fd5273156b6c92d847ba5b5488b742daae81d51839681fc79635

Contents?: true

Size: 555 Bytes

Versions: 7

Compression:

Stored size: 555 Bytes

Contents

$('.media-select--featured').click(function (elem) {
  var id = $(this).data().id;
  var title = $(this).data().title;
  var thumb_url = $(this).data().thumb;

  $(".association_content_item_id").val(id);

  $('.content-item-button__selection').remove();
  $('.content-item-button').append(
    '<div class="content-item-button__selection">' +
    '<img src="' + thumb_url + '" height="50px">' +
    '<div class="content-item-button__selection__text">' +
    'Selected Media: ' +
    title +
    '</div></div>'
  );

  window.MODALS.featured.close();
});

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cortex-plugins-core-0.9.1 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.9.0 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.8.0 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.7.2 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.7.1 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.7.0 app/assets/javascripts/cortex-plugins-core/cells/content_item.js
cortex-plugins-core-0.6.0 app/assets/javascripts/cortex-field_types-core/cells/content_item.js