Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / history / js / mark-as-read.js
1 /**
2 * DO NOT EDIT THIS FILE.
3 * See the following change record for more information,
4 * https://www.drupal.org/node/2815083
5 * @preserve
6 **/
7
8 (function (window, Drupal, drupalSettings) {
9   window.addEventListener('load', function () {
10     if (drupalSettings.history && drupalSettings.history.nodesToMarkAsRead) {
11       Object.keys(drupalSettings.history.nodesToMarkAsRead).forEach(Drupal.history.markAsRead);
12     }
13   });
14 })(window, Drupal, drupalSettings);