Remove appendto

pull/12/head
cagataycivici 2019-05-21 14:41:08 +03:00
parent 0d78ef372e
commit 57b588d80e
2 changed files with 1 additions and 13 deletions

View File

@ -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() {

View File

@ -304,12 +304,6 @@ export default {
<td>null</td>
<td>Maximum number of selectable dates in multiple mode.</td>
</tr>
<tr>
<td>appendTo</td>
<td>DOM element</td>
<td>null</td>
<td>DOM element instance where the dialog should be mounted.</td>
</tr>
<tr>
<td>showOnFocus</td>
<td>boolean</td>