diff options
author | Sjoerd de Bruin <sjoerddebruin@me.com> | 2024-05-04 16:42:52 +0300 |
---|---|---|
committer | Sjoerd de Bruin <sjoerddebruin@me.com> | 2024-05-04 16:49:47 +0300 |
commit | 7b124762951fc992d8e0681f8388b29e40cc8e8e (patch) | |
tree | 635d6f8a7d54733e9201dc7a5e26ccf32cc6e068 /resources/src/mediawiki.notification | |
parent | 820562496b2994f0905d6d19fe93c10214e608a3 (diff) | |
download | mediawikicore-7b124762951fc992d8e0681f8388b29e40cc8e8e.tar.gz mediawikicore-7b124762951fc992d8e0681f8388b29e40cc8e8e.zip |
mediawiki.notification: Add a line after JSDoc block descriptions
Bug: T364191
Change-Id: I10604e05181eb2118bb316502855dd3de4c30332
Diffstat (limited to 'resources/src/mediawiki.notification')
-rw-r--r-- | resources/src/mediawiki.notification/notification.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/src/mediawiki.notification/notification.js b/resources/src/mediawiki.notification/notification.js index 0def36893ab7..5d2348a1da79 100644 --- a/resources/src/mediawiki.notification/notification.js +++ b/resources/src/mediawiki.notification/notification.js @@ -187,6 +187,7 @@ /** * Pause any running auto-hide timer for this notification. + * * @memberof Notification */ Notification.prototype.pause = function () { @@ -205,6 +206,7 @@ * Start autoHide timer if not already started. * Does nothing if autoHide is disabled. * Either to resume from pause or to make the first start. + * * @memberof Notification */ Notification.prototype.resume = function () { @@ -226,6 +228,7 @@ /** * Close the notification. + * * @memberof Notification */ Notification.prototype.close = function () { @@ -394,6 +397,7 @@ /** * Resume any paused auto-hide timers from the beginning. * Only the first {@link mw.notification.autoHideLimit} timers will be resumed. + * * @memberof mw.notification */ resume: function () { @@ -459,6 +463,7 @@ /** * The defaults for [#notify]{@link mw.notification.notify} options parameter. + * * @memberof mw.notification * @type {mw.notification.NotificationOptions} */ |