Created
August 23, 2013 18:13
-
-
Save ngokevin/6322285 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on('click', '.install-or-launch', utils._pd(function() { | |
if (capabilities.firefoxOS) { | |
// Use WebActivities to launch the preloaded Marketplace. | |
// TODO: declare web activity on Marketplace's packaged manifest. | |
var act = new MozActivity({ | |
name: 'marketplace-category', | |
data: {slug: 'all'} | |
}); | |
act.onerror = function() { | |
console.log(this.error.name); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment