summaryrefslogtreecommitdiffstats
path: root/core/src/OC/notification.js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-12-02 18:32:57 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-01-08 10:14:05 +0100
commit74b980310852a0b406fa9d073870f92c409d5444 (patch)
tree055cbdf57886077bf3a6ea476813deedb54064e0 /core/src/OC/notification.js
parent85bc8513557f5ff37fc283d53893d4cb77ec7c3b (diff)
downloadnextcloud-server-74b980310852a0b406fa9d073870f92c409d5444.tar.gz
nextcloud-server-74b980310852a0b406fa9d073870f92c409d5444.zip
Eslint fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/src/OC/notification.js')
-rw-r--r--core/src/OC/notification.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/core/src/OC/notification.js b/core/src/OC/notification.js
index a0b289b6a87..02383af81df 100644
--- a/core/src/OC/notification.js
+++ b/core/src/OC/notification.js
@@ -95,10 +95,10 @@ export default {
* Consider using show() instead of showHTML()
*
* @param {string} html Message to display
- * @param {Object} [options] options
+ * @param {object} [options] options
* @param {string} [options.type] notification type
* @param {int} [options.timeout=0] timeout value, defaults to 0 (permanent)
- * @returns {jQuery} jQuery element for notification row
+ * @return {jQuery} jQuery element for notification row
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/
showHtml(html, options) {
@@ -114,10 +114,10 @@ export default {
* Shows a sanitized notification
*
* @param {string} text Message to display
- * @param {Object} [options] options
+ * @param {object} [options] options
* @param {string} [options.type] notification type
* @param {int} [options.timeout=0] timeout value, defaults to 0 (permanent)
- * @returns {jQuery} jQuery element for notification row
+ * @return {jQuery} jQuery element for notification row
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/
show(text, options) {
@@ -141,7 +141,7 @@ export default {
* Updates (replaces) a sanitized notification.
*
* @param {string} text Message to display
- * @returns {jQuery} JQuery element for notificaiton row
+ * @return {jQuery} JQuery element for notificaiton row
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/
showUpdate(text) {
@@ -158,11 +158,11 @@ export default {
* 7 seconds
*
* @param {string} text Message to show
- * @param {array} [options] options array
+ * @param {Array} [options] options array
* @param {int} [options.timeout=7] timeout in seconds, if this is 0 it will show the message permanently
* @param {boolean} [options.isHTML=false] an indicator for HTML notifications (true) or text (false)
* @param {string} [options.type] notification type
- * @returns {JQuery<any>} the toast element
+ * @return {JQuery<any>} the toast element
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/
showTemporary(text, options) {
@@ -175,7 +175,8 @@ export default {
/**
* Returns whether a notification is hidden.
- * @returns {boolean}
+ *
+ * @return {boolean}
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/
isHidden() {