diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 0f4ae1284..9465530db 100644 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -222,9 +222,6 @@ export default { type: Number, value: null }, - appendTo: { - type: null - }, showOnFocus: { type: Boolean, default: true @@ -611,10 +608,7 @@ export default { this.enableModality(); } else if (this.$refs.overlay) { - if (this.appendTo) - DomHandler.absolutePosition(this.$refs.overlay, this.$el); - else - DomHandler.relativePosition(this.$refs.overlay, this.$el); + DomHandler.relativePosition(this.$refs.overlay, this.$el); } }, onButtonClick() { diff --git a/src/views/calendar/CalendarDoc.vue b/src/views/calendar/CalendarDoc.vue index 71546cf6d..bd01a213a 100644 --- a/src/views/calendar/CalendarDoc.vue +++ b/src/views/calendar/CalendarDoc.vue @@ -304,12 +304,6 @@ export default { null Maximum number of selectable dates in multiple mode. - - appendTo - DOM element - null - DOM element instance where the dialog should be mounted. - showOnFocus boolean