diff options
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/ui.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 20649e0f8a..ec94507cd8 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -4734,15 +4734,15 @@ var UI = baseclass.extend(/** @lends LuCI.ui.prototype */ { E('p', _('Any IP change requires <strong>connecting to the new IP</strong> within %d seconds to retain the changes.').format(L.env.apply_rollback)), E('p', _('Choose how to apply changes:')), E('div', { 'class': 'right' }, [ - E('button', { + E('div', { 'class': 'btn cbi-button', 'click': rejectFn, }, [ _('Cancel') ]), ' ', - E('button', { + E('div', { 'class': 'btn cbi-button-action important', 'click': resolveFn.bind(null, true) }, [ _('Apply, reverting if GUI remains unreachable') ]), ' ', - E('button', { + E('div', { 'class': 'btn cbi-button-negative important', 'click': resolveFn.bind(null, false) }, [ _('Apply, committing now') ]) |