Added click navigation

This commit is contained in:
Joel Collins 2019-02-12 14:53:24 +00:00
parent 61ea32efb8
commit 0c305295d3
3 changed files with 21 additions and 4 deletions

View file

@ -98,6 +98,13 @@ export default {
}
},
mounted() {
// A global signal listener to perform a move action
this.$root.$on('globalMoveEvent', (x, y, z, absolute) => {
this.moveRequest(x, y, z, absolute)
})
},
methods: {
// Handle global mouse wheel events to be associated with navigation
wheelMonitor: function(event) {