X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fhistory%2Fjs%2Fmark-as-read.js;fp=web%2Fcore%2Fmodules%2Fhistory%2Fjs%2Fmark-as-read.js;h=c3a74f4296d493d1c15402d910c3adf811df3f93;hp=e225401e33baf2a5593322ffbd9ef7a8fcf2157f;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/history/js/mark-as-read.js b/web/core/modules/history/js/mark-as-read.js index e225401e3..c3a74f429 100644 --- a/web/core/modules/history/js/mark-as-read.js +++ b/web/core/modules/history/js/mark-as-read.js @@ -1,23 +1,14 @@ /** - * @file - * Marks the nodes listed in drupalSettings.history.nodesToMarkAsRead as read. - * - * Uses the History module JavaScript API. - * - * @see Drupal.history - */ +* DO NOT EDIT THIS FILE. +* See the following change record for more information, +* https://www.drupal.org/node/2815083 +* @preserve +**/ (function (window, Drupal, drupalSettings) { - - 'use strict'; - - // When the window's "load" event is triggered, mark all enumerated nodes as - // read. This still allows for Drupal behaviors (which are triggered on the - // "DOMContentReady" event) to add "new" and "updated" indicators. window.addEventListener('load', function () { if (drupalSettings.history && drupalSettings.history.nodesToMarkAsRead) { Object.keys(drupalSettings.history.nodesToMarkAsRead).forEach(Drupal.history.markAsRead); } }); - -})(window, Drupal, drupalSettings); +})(window, Drupal, drupalSettings); \ No newline at end of file