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.

Me

Note: This page documents the Jetpack Prototype, which is  no longer under active development. Read the experiment report for what we learned from it and the blog post announcing the first SDK release for what we're up to next!

The jetpack.me namespace provides mechanisms for introspecting the dynamic state of your jetpack. The namespace currently lives in the future and must be imported before it is used:

jetpack.future.import("me");

Methods

onFirstRun(funcfunction)jetpack.me.onFirstRun() allows jetpacks to be notified after they are successfully installed. onFirstRun() accepts a callback which is called after installation. Note that this mechanism is independent of the first-run page; in particular, the callback is not a load event listener or jQuery ready callback. onFirstRun() may be called anywhere in your jetpack, but if it is called as the result of some asynchronous operation such as a timeout or XMLHttpRequest, it is ignored. If you call it multiple times, all but the final call are ignored.
funcA function. it takes no paramenters. Inside the function, this is the jetpack's content.function

Example

jetpack.me.onFirstRun(function(){
jetpack.notifications.show("Oh boy, I'm installed!");
});

See also

Document Tags and Contributors

 Contributors to this page: Sheppy, MykMelez, JetpackBot, adw
 Last updated by: Sheppy,