comparison Applications/StoneWebViewer/WebApplication/index.html @ 1966:a5f0b395d4df

Fix issues with drag-and-drop, upgraded Vue.js to 2.6.4
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 28 Oct 2022 09:02:16 +0200
parents 142c7ee8fe1f
children b180233143ae
comparison
equal deleted inserted replaced
1965:f75fbcc0e486 1966:a5f0b395d4df
660 'wvSplitpane__cellBorder--red' : content.series.color == 'red', 660 'wvSplitpane__cellBorder--red' : content.series.color == 'red',
661 'wvSplitpane__cellBorder--green' : content.series.color == 'green', 661 'wvSplitpane__cellBorder--green' : content.series.color == 'green',
662 'wvSplitpane__cellBorder--yellow' : content.series.color == 'yellow', 662 'wvSplitpane__cellBorder--yellow' : content.series.color == 'yellow',
663 'wvSplitpane__cellBorder--violet' : content.series.color == 'violet' 663 'wvSplitpane__cellBorder--violet' : content.series.color == 'violet'
664 }" 664 }"
665 ondragover="event.preventDefault()" 665 v-on:dragenter="$event.preventDefault()"
666 v-on:dragover="$event.preventDefault()"
666 v-on:drop="DragDrop($event)" 667 v-on:drop="DragDrop($event)"
667 style="width:100%;height:100%"> 668 style="width:100%;height:100%">
668 <div class="wvSplitpane__cell" 669 <div class="wvSplitpane__cell"
669 v-on:click="MakeActive()"> 670 v-on:click="MakeActive()">
670 <div v-show="status == 'ready'" 671 <div v-show="status == 'ready'"