Difference between revisions of "MediaWiki:Common.js"

From Expat Wiki
Jump to navigation Jump to search
(Remove GA and Yandex.)
 
(27 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
// == Google Analytics =========================================================
 
  
ga('create', 'UA-158655997-1', {
+
// == filter-list-by-form.js ====================================================
  'storage': 'none',
+
if (mw.config.get('wgPageName') == 'Germany/Banking/Current') {
  'clientId': 'clientIDHashed'
+
  mw.loader.getScript('/resources.custom/filter-list-by-form.js')
});
+
    .then(function () {
ga('set', 'anonymizeIp', true);
+
      const filterListByForm = new FilterListByForm('form.form-list-filter-js', 'table.form-list-filter-js tr.filterable');
ga('send', 'pageview');
+
      const dataToContent = new DataToContent('table.form-list-filter-js tr', 'td.{key}');
 
+
    }, function (e) {
 
+
      mw.log.error(e.message);
// == /Google Analytics =========================================================
+
  });
 +
}
 +
// == /filter-list-by-form.js ===================================================

Latest revision as of 14:21, 24 October 2023

/* Any JavaScript here will be loaded for all users on every page load. */


// == filter-list-by-form.js ====================================================
if (mw.config.get('wgPageName') == 'Germany/Banking/Current') {
  mw.loader.getScript('/resources.custom/filter-list-by-form.js')
    .then(function () {
      const filterListByForm = new FilterListByForm('form.form-list-filter-js', 'table.form-list-filter-js tr.filterable');
      const dataToContent = new DataToContent('table.form-list-filter-js tr', 'td.{key}');
    }, function (e) {
      mw.log.error(e.message);
  });
}
// == /filter-list-by-form.js ===================================================