From: Jo-Philipp Wich 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=93f9784a0488d024b9d17347351af21a5e1403ca;p=oweals%2Fluci.git luci-base: luci.js: fix JSdoc markup issues Signed-off-by: Jo-Philipp Wich (cherry picked from commit 06af541c376ddab7303ea4294b17e8be91458d05) --- diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 20c112e77..6265ef970 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -1211,7 +1211,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', /** @@ -1927,7 +1927,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() {