views_counter.js 388 B

12345678910111213
  1. define(['require', 'jquery'], function(require, $) {
  2. $('.views-counter-container').each(function(index, item) {
  3. var target = $(item).attr('data-target');
  4. console.log(target);
  5. if (target) {
  6. // if a target is set lets move the counter there
  7. $(this).removeClass('hidden');
  8. $(target).append($(this));
  9. }
  10. });
  11. });