Skip to content
Snippets Groups Projects
Select Git revision
  • 5980a94a26a6ac295d35bffcefe6a2cd4086a33c
  • master default protected
  • updateOptitrackToNatNet3
  • develop
  • feature/pigeon-udfa
  • changes-pc-rar2
  • feature/update-cdisp
  • ita-fileformat-cleanup
  • switchFromSerialToSerialport
  • ma23-mika
  • subjectOrientationFeedback
  • feature/iem_dynamic_auralization
  • feature/individualizeHRTFbyITD
  • features/hoa-decoders
  • jst
  • ahe
  • ahe_local
  • feature/changeItaCoordinatesElevationAndAzimuthFromDegreesToRadians
  • 35-output-measurement-chain-calibration
  • bugfix/midi
  • feature/propagation_models protected
  • pynamic-v0.0.1
  • paper_linking_atmospheric_urban_auralization
  • documentationFix
  • Last-SVN-Commit
25 results

ita_tutorial_itaCoordinates.m

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Delete.vue 556 B
    <template>
      <b-button class="coscine_delete" @click="deleteItem">{{ btnText }}</b-button> 
    </template>
    
    <script lang="ts">
    import Vue from 'vue';
    import BootstrapVue from 'bootstrap-vue';
    Vue.use(BootstrapVue);
    
    export default Vue.extend({
      name: 'CoscineDelete',
      props: {
        btnText: {
          default: 'Delete',
          type: String,
        },
      },
      methods: {
        deleteItem() {
          this.$emit('delete');
        },
      },
    });
    </script>
    <style scoped>
    .coscine_delete:hover {
      background-color: #cc071e;
      border-color: #8e0515;
      color: #ffffff;
    }
    </style>