Sha256: a1b83988d3577dd13871210c259ffe8947449c5fd42f70e4ef0a3076b4b1e8c0

Contents?: true

Size: 936 Bytes

Versions: 28

Compression:

Stored size: 936 Bytes

Contents

(() => {
  const COMPONENT_SELECTOR = '#thredded--container [data-time-ago]';
  const Thredded = window.Thredded;
  if ('timeago' in window) {
    const timeago = window.timeago;
    Thredded.onPageLoad(() => {
      const threddedContainer = document.querySelector('#thredded--container');
      if (!threddedContainer) return;
      timeago().render(
        document.querySelectorAll(COMPONENT_SELECTOR),
        threddedContainer.getAttribute('data-thredded-locale').replace('-', '_'));
    });
    document.addEventListener('turbolinks:before-cache', () => {
      timeago.cancel();
    });
  } else if ('jQuery' in window && 'timeago' in jQuery.fn) {
    const $ = window.jQuery;
    Thredded.onPageLoad(() => {
      const allowFutureWas = $.timeago.settings.allowFuture;
      $.timeago.settings.allowFuture = true;
      $(COMPONENT_SELECTOR).timeago();
      $.timeago.settings.allowFuture = allowFutureWas;
    });
  }
})();

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
thredded-0.16.13 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.12 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.11 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.10 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.9 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.8 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.7 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.6 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.5 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.4 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.3 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.1 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.16.0 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.15.5 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.15.4 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.15.3 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.15.2 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.15.1 app/assets/javascripts/thredded/components/time_stamps.es6
threddedDANIEL-0.14.5 app/assets/javascripts/thredded/components/time_stamps.es6
thredded-0.14.4 app/assets/javascripts/thredded/components/time_stamps.es6