|
@@ -55,15 +55,15 @@
|
|
<br />Then, someone should be with you shortly.
|
|
<br />Then, someone should be with you shortly.
|
|
</p>
|
|
</p>
|
|
|
|
|
|
- <v-card class="mb-12" color="grey lighten-1" height="200px">
|
|
|
|
|
|
+ <v-card class="mb-12" color="grey lighten-1" height="50vh">
|
|
<grid-layout
|
|
<grid-layout
|
|
:layout="videoGridPreview"
|
|
:layout="videoGridPreview"
|
|
:key="`preview_${uniqueId}`"
|
|
:key="`preview_${uniqueId}`"
|
|
:col-num="maxCols"
|
|
:col-num="maxCols"
|
|
:max-rows="maxRows"
|
|
:max-rows="maxRows"
|
|
:row-height="rowHeight"
|
|
:row-height="rowHeight"
|
|
- :is-draggable="true"
|
|
|
|
- :is-resizable="true"
|
|
|
|
|
|
+ :is-draggable="false"
|
|
|
|
+ :is-resizable="false"
|
|
:verticalCompact="true"
|
|
:verticalCompact="true"
|
|
:margin="[gridPadding, gridPadding]"
|
|
:margin="[gridPadding, gridPadding]"
|
|
:use-css-transforms="true"
|
|
:use-css-transforms="true"
|
|
@@ -78,17 +78,17 @@
|
|
</v-stepper-content>
|
|
</v-stepper-content>
|
|
|
|
|
|
<v-stepper-content step="3">
|
|
<v-stepper-content step="3">
|
|
- <p>Great!</p>
|
|
|
|
|
|
+ <p>Great! Please wait a little, doctor should join shortly.</p>
|
|
|
|
|
|
- <v-card class="mb-12" color="grey lighten-1" height="200px">
|
|
|
|
|
|
+ <v-card class="mb-12" color="grey lighten-1" height="50vh">
|
|
<grid-layout
|
|
<grid-layout
|
|
:layout="videoGrid"
|
|
:layout="videoGrid"
|
|
:key="uniqueId"
|
|
:key="uniqueId"
|
|
:col-num="maxCols"
|
|
:col-num="maxCols"
|
|
:max-rows="maxRows"
|
|
:max-rows="maxRows"
|
|
:row-height="rowHeight"
|
|
:row-height="rowHeight"
|
|
- :is-draggable="true"
|
|
|
|
- :is-resizable="true"
|
|
|
|
|
|
+ :is-draggable="false"
|
|
|
|
+ :is-resizable="false"
|
|
:verticalCompact="true"
|
|
:verticalCompact="true"
|
|
:margin="[gridPadding, gridPadding]"
|
|
:margin="[gridPadding, gridPadding]"
|
|
:use-css-transforms="true"
|
|
:use-css-transforms="true"
|
|
@@ -96,10 +96,6 @@
|
|
<grid-item v-for="video in videoGrid" :key="video.id" :id="video.id" :x="video.x" :y="video.y" :w="video.w" :h="video.h" :i="video.i"></grid-item>
|
|
<grid-item v-for="video in videoGrid" :key="video.id" :id="video.id" :x="video.x" :y="video.y" :w="video.w" :h="video.h" :i="video.i"></grid-item>
|
|
</grid-layout>
|
|
</grid-layout>
|
|
</v-card>
|
|
</v-card>
|
|
-
|
|
|
|
- <v-btn color="primary" @click="stepper = 1">Continue</v-btn>
|
|
|
|
-
|
|
|
|
- <v-btn text @click="stepper = 2">Cancel</v-btn>
|
|
|
|
</v-stepper-content>
|
|
</v-stepper-content>
|
|
</v-stepper-items>
|
|
</v-stepper-items>
|
|
</v-stepper>
|
|
</v-stepper>
|
|
@@ -324,7 +320,7 @@ export default {
|
|
videoGrid = this.videoGrid = [];
|
|
videoGrid = this.videoGrid = [];
|
|
}
|
|
}
|
|
|
|
|
|
- let windowHeight = window.innerHeight;
|
|
|
|
|
|
+ let windowHeight = window.innerHeight / 2;
|
|
this.rowHeight = (windowHeight - this.gridPadding * (this.maxRows + 1)) / this.maxRows;
|
|
this.rowHeight = (windowHeight - this.gridPadding * (this.maxRows + 1)) / this.maxRows;
|
|
|
|
|
|
let cols = Math.ceil(Math.sqrt(this.videos.length));
|
|
let cols = Math.ceil(Math.sqrt(this.videos.length));
|