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, type: Number,
value: null value: null
}, },
appendTo: {
type: null
},
showOnFocus: { showOnFocus: {
type: Boolean, type: Boolean,
default: true default: true
@ -611,10 +608,7 @@ export default {
this.enableModality(); this.enableModality();
} }
else if (this.$refs.overlay) { else if (this.$refs.overlay) {
if (this.appendTo) DomHandler.relativePosition(this.$refs.overlay, this.$el);
DomHandler.absolutePosition(this.$refs.overlay, this.$el);
else
DomHandler.relativePosition(this.$refs.overlay, this.$el);
} }
}, },
onButtonClick() { onButtonClick() {

View File

@ -304,12 +304,6 @@ export default {
<td>null</td> <td>null</td>
<td>Maximum number of selectable dates in multiple mode.</td> <td>Maximum number of selectable dates in multiple mode.</td>
</tr> </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> <tr>
<td>showOnFocus</td> <td>showOnFocus</td>
<td>boolean</td> <td>boolean</td>