Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MozMobileConnection.cancelMMI()

This article needs a technical review. How you can help.

This API is available on Firefox OS for internal applications only.

Summary

The cancelMMI method cancels the current MMI request if one exists.

Syntax

var request = navigator.mozMobileConnection.cancelMMI();

Return

A DOMRequest object to handle the success or failure of the method call.

Example

var request = navigator.mozMobileConnection.cancelMMI();

request.onsuccess = function () {
  console.log('operation succesful: ' + this.result);
}

request.onerror = function () {
  console.log('operation failed: ' + this.error.name);
}

Specification

Not part of any specification.

See also

Document Tags and Contributors

 Contributors to this page: chrisdavidmills, fscholz, kscarfone, Sheppy, jswisher, Jeremie
 Last updated by: chrisdavidmills,