Current File : /home/tsgmexic/www/media/com_fields/js/admin-field-changecontext.js
Joomla.fieldsChangeContext = context => {

  const regex = new RegExp('([?;&])context[^&;]*[;&]?');
  const url = window.location.href;
  const query = url.replace(regex, '$1').replace(/&$/, ''); // eslint-disable-next-line

  window.location.href = (query.length > 2 ? query + '&' : '?') + (context ? 'context=' + context : '');
};