Skip to content

Commit

Permalink
Up to 2.0.23-20240622
Browse files Browse the repository at this point in the history
  • Loading branch information
4IceG authored Jun 22, 2024
1 parent bda6cff commit ea8bdd4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion luci-app-sms-tool-js/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MAINTAINER:=Rafał Wabik <[email protected]>
LUCI_DESCRIPTION:=LuCI JS interface for the sms-tool. The user interface supports SMS / USSD Codes / AT Commands.
LUCI_PKGARCH:=all
LUCI_DEPENDS:=+sms-tool +kmod-usb-serial +kmod-usb-serial-option +comgt
PKG_VERSION:=2.0.22-20240522
PKG_VERSION:=2.0.23-20240622

define Package/luci-app-sms-tool-js/conffiles
/etc/config/sms_tool_js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ return view.extend({
E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title' }, [ _('User AT commands') ]),
E('div', { 'class': 'cbi-value-field' }, [
E('select', { 'class': 'cbi-input-select', 'id': 'tk', 'style': 'margin:5px 0; width:100%;', 'mousedown': ui.createHandlerFn(this, 'handleCopy')},
E('select', { 'class': 'cbi-input-select',
'id': 'tk',
'style': 'margin:5px 0; width:100%;',
'change': ui.createHandlerFn(this, 'handleCopy'),
'mousedown': ui.createHandlerFn(this, 'handleCopy')
},
(loadResults[0] || "").trim().split("\n").map(function(cmd) {
var fields = cmd.split(/;/);
var name = fields[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ return view.extend({
E('select', { 'class': 'cbi-input-select',
'id': 'pb',
'style': 'margin:5px 0; width:100%;',
'mousedown': ui.createHandlerFn(this, 'handleCopy')},
'change': ui.createHandlerFn(this, 'handleCopy'),
'mousedown': ui.createHandlerFn(this, 'handleCopy')
},
(loadResults[0] || "").trim().split("\n").map(function(cmd) {
var fields = cmd.split(/;/);
var name = fields[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,12 @@ return view.extend({
E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title' }, [ _('User USSD codes') ]),
E('div', { 'class': 'cbi-value-field' }, [
E('select', { 'class': 'cbi-input-select', 'id': 'tk', 'style': 'margin:5px 0; width:100%;', 'mousedown': ui.createHandlerFn(this, 'handleCopy')},
E('select', { 'class': 'cbi-input-select',
'id': 'tk',
'style': 'margin:5px 0; width:100%;',
'change': ui.createHandlerFn(this, 'handleCopy'),
'mousedown': ui.createHandlerFn(this, 'handleCopy')
},
(loadResults[0] || "").trim().split("\n").map(function(cmd) {
var fields = cmd.split(/;/);
var name = fields[0];
Expand Down

0 comments on commit ea8bdd4

Please sign in to comment.