luci-base: luci.js: fix JSdoc markup issues
authorJo-Philipp Wich <jo@mein.io>
Wed, 15 Apr 2020 20:03:20 +0000 (22:03 +0200)
committerJo-Philipp Wich <jo@mein.io>
Thu, 7 May 2020 17:40:49 +0000 (19:40 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 06af541c376ddab7303ea4294b17e8be91458d05)

modules/luci-base/htdocs/luci-static/resources/luci.js

index 20c112e7784f462c94d22bf8e4e1b46716c77783..6265ef970075bdf878910547aa8952a122ce9d01 100644 (file)
         * 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',
 
                /**
         * 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() {