Confirmed users
258
edits
(→Stk) |
|||
| Line 45: | Line 45: | ||
==== Stk ==== | ==== Stk ==== | ||
*Current B2G: | *Current B2G: | ||
var icc = navigator.mozMobileConnection.icc; | |||
icc.onstkcommand = function (evt) { | icc.onstkcommand = function (evt) { | ||
var command = evt.command; | var command = evt.command; | ||
| Line 51: | Line 52: | ||
} | } | ||
} | } | ||
icc.sendStkResponse(command, response); | |||
* Multi-SIM: | * Multi-SIM: | ||
var iccManager = navigator.mozIccManager; | |||
var icc = iccManager.getIccById(iccId); | var icc = iccManager.getIccById(iccId); | ||
icc.onstkcommand = function (evt) { | icc.onstkcommand = function (evt) { | ||
| Line 60: | Line 64: | ||
} | } | ||
} | } | ||
icc.sendStkResponse(command, response); | |||