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

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-04-15 22:03:20 +02:00
parent b0c8221926
commit 06af541c37

View file

@ -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() {