mirror of
https://github.com/srlabs/blue-merle.git
synced 2025-01-03 03:20:52 -05:00
web: fix syntax error
This commit is contained in:
parent
87c420e2de
commit
9466707119
@ -292,7 +292,8 @@ function handleSimSwap(ev) {
|
|||||||
callBlueMerle("random-imei").then(
|
callBlueMerle("random-imei").then(
|
||||||
function(res) {
|
function(res) {
|
||||||
dlg.appendChild(
|
dlg.appendChild(
|
||||||
E('div', { 'class': 'text'}, [
|
E('div', { 'class': 'text'},
|
||||||
|
[
|
||||||
E('p', { 'class': 'text'},
|
E('p', { 'class': 'text'},
|
||||||
_("IMEI set:") + " " + res
|
_("IMEI set:") + " " + res
|
||||||
),
|
),
|
||||||
@ -300,9 +301,10 @@ function handleSimSwap(ev) {
|
|||||||
_("Please shutdown the device and go to another place before booting")
|
_("Please shutdown the device and go to another place before booting")
|
||||||
),
|
),
|
||||||
E('button', { 'class': 'btn cbi-button-positive', 'click': handleShutdown, 'disabled': isReadonlyView },
|
E('button', { 'class': 'btn cbi-button-positive', 'click': handleShutdown, 'disabled': isReadonlyView },
|
||||||
[ _('Shutdown…') ])
|
[ _('Shutdown…') ]
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
).catch(
|
).catch(
|
||||||
|
Loading…
Reference in New Issue
Block a user