This commit is contained in:
@@ -640,6 +640,12 @@ export default {
|
||||
return elapsed < 200;
|
||||
},
|
||||
mouseMoveDayView(tms) {
|
||||
//Vuetify bug in calendar apparently where it fires for both day and day-category views
|
||||
//since I set them to both call into this same method I need to ignore the incorrect one
|
||||
if (!tms.category && this.viewType == "category") {
|
||||
return;
|
||||
}
|
||||
console.log("mousing", tms.category);
|
||||
//no event being dragged or exgtended?
|
||||
if (!this.dragEvent && !this.extendEvent) {
|
||||
return;
|
||||
@@ -647,6 +653,7 @@ export default {
|
||||
|
||||
const mouse = this.toTime(tms);
|
||||
if (this.dragEvent && this.dragTime !== null) {
|
||||
console.log("dragging, category:", tms.category);
|
||||
//# DRAGGING PATH
|
||||
const start = this.dragEvent.start;
|
||||
const end = this.dragEvent.end;
|
||||
|
||||
Reference in New Issue
Block a user