Changeset 35547


Ignore:
Timestamp:
2021-10-01T16:16:37+13:00 (3 years ago)
Author:
cstephen
Message:

Show handles for production, but disable movement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/korero-maori-asr/src/components/WordTimingSelector.vue

    r35545 r35547  
    1111        <div class="word-attachment-container" :style="{ left: leftHandleLeft }">
    1212            <span>{{ wordStartTime }}</span>
    13             <span v-if="isMounted && !isProduction" class="material-icons mdi-m word-handle" @mousedown="canShiftMinValue = true">
     13            <span v-if="isMounted" class="material-icons mdi-m word-handle" @mousedown="canShiftMinValue = true">
    1414                first_page
    1515            </span>
     
    1717
    1818        <div class="word-attachment-container" :style="{ left: rightHandleLeft }">
    19             <span v-if="isMounted && !isProduction" class="material-icons mdi-m word-handle" @mousedown="canShiftMaxValue = true">
     19            <span v-if="isMounted" class="material-icons mdi-m word-handle" @mousedown="canShiftMaxValue = true">
    2020                last_page
    2121            </span>
     
    223223        },
    224224        onDocumentMouseMove(event) {
     225            if (this.isProduction) {
     226                return;
     227            }
     228
    225229            if (this.canShiftMinValue) {
    226230                this.onMinHandleMouseMove(event);
Note: See TracChangeset for help on using the changeset viewer.