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, 16 Apr 2020 11:30:35 +0000 (13:30 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-base/htdocs/luci-static/resources/luci.js

index 3467c3261fa612e9128a6831757a6527c4650b05..6d31332a8193e197d819c041c74eac5613fe838d 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() {