I've got some good news!
My collaborator discovered a bit of help, waiting there all along. The thing that you'll need to make use of the JS buttons in quests and plaques is the ARIS.hook(). See the example below.
Code: Select all
<script type="text/javascript">
var ARIS = {};
ARIS.ready = function() {
ARIS.hook = function()
{
ARIS.vibrate();
ARIS.exitToTab('MAP');
}
}
</script>
Two other important things to note here:
1. When you want to exit to a tab, like the map, the correct usage is the name of the tab in all CAPS (e.g. "MAP"). There has been a lot of confusion over this in the past, and just today, I've fixed a couple places in the documentation that were incorrect.
2. It seems like there should be a way to retitle the buttons ("Continue" and "Begin Quest"), but I haven't been able to do this.