clickable navigation

This commit is contained in:
Matt Walsh 2020-09-08 16:27:03 -05:00
commit 6a2317d283
6 changed files with 24 additions and 6 deletions

View file

@ -251,6 +251,9 @@ const navigation = (() => {
}
};
// return the specificed display
const getDisplay = (index) => displays[index];
return {
init,
updateStatus,
@ -258,5 +261,6 @@ const navigation = (() => {
isPlaying,
displayNavMessage,
msg,
getDisplay,
};
})();