Created
December 7, 2016 15:06
-
-
Save Katharine/8f9170c6bd43e6ab13dfe286c611e269 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
// Paste the code below into the JavaScript console while logged in to CloudPebble for | |
// a link to a zip file containing all your CloudPebble projects. | |
console.log("Requesting export..."); | |
Ajax.Post('/ide/transition/export', {}).then(function(data) { | |
console.log("Request result: "); | |
console.log(data); | |
console.log("Waiting for archive. This may take a long time."); | |
return Ajax.PollTask(data.task_id, {on_bad_request: console.error}); | |
}).then(function(result) { | |
console.log("Export succeeded. Download it at " + result); | |
}).catch(function(error) { | |
console.error("Export failed."); | |
console.error(error); | |
}); |
Pebble ecosystem is an example of usability and modernity.
<3 Thanks <3
Goodbye and thanks for all the fish!
Thanks for all that you've done (and continue to do) for the community!
Worked perfectly! Thanks :-)
I'm a developer. How can I continue to manage my application?
http://store.rebble.io/app/5aee3639f38588014500083b
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thx