Address testathon issues relating to context menu (#2235)

* Support category arrays for legacy actions

* Fixed object path listener. Removed old context menus

* Removed old fullscreen action and Screenfull dependency

* Restore confirmation dialog on remove

* Restored tests

* Remove unused legacy policies
This commit is contained in:
Andrew Henry
2018-12-07 10:15:11 -08:00
committed by Pete Richards
parent a87fc51fbb
commit c748569433
30 changed files with 86 additions and 1318 deletions

View File

@ -4,11 +4,11 @@
</template>
<script>
import contextMenu from '../../../ui/components/mixins/context-menu'
import contextMenu from '../../../ui/components/mixins/context-menu-gesture'
export default {
props: ['object-path'],
mixins: [contextMenu]
props: ['objectPath'],
mixins: [contextMenu],
}
</script>