Sha256: fabac3b53837c34c2932144245883e7f157529983d64e564d436c12304178853

Contents?: true

Size: 621 Bytes

Versions: 50

Compression:

Stored size: 621 Bytes

Contents

/**
 * Helper class for internationalization event handling
 */
export default class InternationalizationHelper {
  constructor() {
    this.addLangClickListener();
  }

  /**
   * Handle the event of selecting a new language from top bar, language select element.
   * This updates the html@lang attribute, which is important for screen readers
   */
  addLangClickListener() {
    $('#user_utility_links')
      .find('a.dropdown-item')
      .on('click', e => {
        let locale = e.target.dataset['locale'];
        if (!locale) {
          return;
        }
        $('html').attr('lang', locale);
      });
  }
}

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-5.0.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-5.0.0.rc3 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-5.0.0.rc2 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-5.0.0.rc1 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.6.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0.rc3 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0.rc2 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0.rc1 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.5.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0.beta2 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.4.2 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-4.0.0.beta1 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.4.1 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.4.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.3.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.2.0 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-2.9.6 app/assets/javascripts/hyrax/i18n_helper.es6
hyrax-3.1.0 app/assets/javascripts/hyrax/i18n_helper.es6