Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-11-03 23:54:40 +0300
committerJo-Philipp Wich <jo@mein.io>2019-11-03 23:55:50 +0300
commit86f492173d1daab8b75e4d4bd70ba06872ea70fa (patch)
tree3a64f76424681b0a0bb613c6966079a530ffd057 /applications/luci-app-firewall/htdocs
parentb2a46e131b778ae14156676de8daf8231ab8e151 (diff)
treewide: require ui.js explicitly
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-firewall/htdocs')
-rw-r--r--applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js
index 4b4b140086..9feafd824e 100644
--- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js
+++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js
@@ -1,5 +1,6 @@
'use strict';
'require fs';
+'require ui';
return L.view.extend({
load: function() {
@@ -11,10 +12,10 @@ return L.view.extend({
return fs.write('/etc/firewall.user', value).then(function(rc) {
document.querySelector('textarea').value = value;
- L.ui.addNotification(null, E('p', _('Contents have been saved.')), 'info');
+ ui.addNotification(null, E('p', _('Contents have been saved.')), 'info');
fs.exec('/etc/init.d/firewall', ['restart']);
}).catch(function(e) {
- L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e.message)));
+ ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e.message)));
});
},