Confirmed users
266
edits
Allstars.chh (talk | contribs) |
Allstars.chh (talk | contribs) |
||
| Line 717: | Line 717: | ||
typeOfCommandL command.typeOfCommand, | typeOfCommandL command.typeOfCommand, | ||
commandQualifier: command.commandQualifier, | commandQualifier: command.commandQualifier, | ||
resultCode : mozICC.STK_RESULT_OK | resultCode : mozICC.STK_RESULT_OK, | ||
// 'id' is got from the chosen item identifier (menu.item[].identifier) | // 'id' is got from the chosen item identifier (menu.item[].identifier) | ||
itemIdentifier: id | itemIdentifier: id | ||
| Line 737: | Line 737: | ||
// onTextInput is the callback when user inputs complete. | // onTextInput is the callback when user inputs complete. | ||
function onTextInput(input) { | function onTextInput(input) { | ||
var response = | var response = { | ||
commandNumber: command.commandNumber, | |||
typeOfCommandL command.typeOfCommand, | |||
commandQualifier: command.commandQualifier, | |||
resultCode : mozICC.STK_RESULT_OK, | |||
input: input | |||
}; | |||
mozIcc.sendStkResponse(response); | mozIcc.sendStkResponse(response); | ||
} | } | ||