From: Jo-Philipp Wich <jo@mein.io>
Date: Wed, 15 Apr 2020 20:03:20 +0000 (+0200)
Subject: luci-base: luci.js: fix JSdoc markup issues
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=06af541c376ddab7303ea4294b17e8be91458d05;p=oweals%2Fluci.git

luci-base: luci.js: fix JSdoc markup issues

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
---

diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js
index 3467c3261..6d31332a8 100644
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js
@@ -1213,7 +1213,7 @@
 	 * To import the class in views, use `'require dom'`, to import it in
 	 * external JavaScript, use `L.require("dom").then(...)`.
 	 */
-	var DOM = Class.singleton(/* @lends LuCI.dom.prototype */ {
+	var DOM = Class.singleton(/** @lends LuCI.dom.prototype */ {
 		__name__: 'LuCI.dom',
 
 		/**
@@ -1929,7 +1929,7 @@
 	 * The `view` class forms the basis of views and provides a standard
 	 * set of methods to inherit from.
 	 */
-	var View = Class.extend(/* @lends LuCI.view.prototype */ {
+	var View = Class.extend(/** @lends LuCI.view.prototype */ {
 		__name__: 'LuCI.view',
 
 		__init__: function() {