From 3c4bc228a1f7b5731cf464f3f407c9ed9ace3cd2 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 3 Apr 2020 10:00:06 +0200 Subject: treewide: import utility classes explicitly Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/view/vnstat2/config.js | 3 ++- .../htdocs/luci-static/resources/view/vnstat2/graphs.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'applications/luci-app-vnstat2/htdocs/luci-static/resources') diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js index 0b01239799..14e968a071 100644 --- a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js @@ -1,13 +1,14 @@ // This is free software, licensed under the Apache License, Version 2.0 'use strict'; +'require view'; 'require fs'; 'require ui'; 'require uci'; 'require form'; 'require tools.widgets as widgets'; -return L.view.extend({ +return view.extend({ handleDeleteModal: function(m, iface, ev) { L.showModal(_('Delete interface %h').format(iface), [ E('p', _('The interface will be removed from the database permanently. This cannot be undone.')), diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js index 770884655a..fbe9d59337 100644 --- a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js @@ -1,10 +1,11 @@ // This is free software, licensed under the Apache License, Version 2.0 'use strict'; +'require view'; 'require fs'; 'require ui'; -return L.view.extend({ +return view.extend({ renderTab: function(ifaces, style, title) { var tab = E('div', { 'class': 'cbi-section', -- cgit v1.2.3