Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fe03a3f

Browse filesBrowse files
committed
build 0.1.3
1 parent b9f00cc commit fe03a3f
Copy full SHA for fe03a3f

File tree

Expand file treeCollapse file tree

6 files changed

+12
-12
lines changed
Filter options
Expand file treeCollapse file tree

6 files changed

+12
-12
lines changed

‎package/dist/index.mjs

Copy file name to clipboardExpand all lines: package/dist/index.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
/**
33
* vue-simple-portal
4-
* version: 0.1.2,
4+
* version: 0.1.3,
55
* (c) Thorsten Lünborg, 2019
66
* LICENCE: Apache-2.0
77
* http://github.com/linusborg/vue-simple-portal
@@ -126,7 +126,7 @@ var Portal = Vue.extend({
126126
var parent = document.querySelector('body');
127127
var child = document.createElement(this.tag);
128128
child.id = this.selector.substring(1);
129-
parent.append(child);
129+
parent.appendChild(child);
130130
},
131131
mount: function mount() {
132132
var targetEl = this.getTargetEl();
@@ -135,7 +135,7 @@ var Portal = Vue.extend({
135135
if (this.prepend && targetEl.firstChild) {
136136
targetEl.insertBefore(el, targetEl.firstChild);
137137
} else {
138-
targetEl.append(el);
138+
targetEl.appendChild(el);
139139
}
140140

141141
this.container = new TargetContainer({

‎package/dist/index.umd.js

Copy file name to clipboardExpand all lines: package/dist/index.umd.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
/**
33
* vue-simple-portal
4-
* version: 0.1.2,
4+
* version: 0.1.3,
55
* (c) Thorsten Lünborg, 2019
66
* LICENCE: Apache-2.0
77
* http://github.com/linusborg/vue-simple-portal
@@ -160,7 +160,7 @@
160160
var parent = document.querySelector('body');
161161
var child = document.createElement(this.tag);
162162
child.id = this.selector.substring(1);
163-
parent.append(child);
163+
parent.appendChild(child);
164164
},
165165
mount: function mount() {
166166
var targetEl = this.getTargetEl();
@@ -169,7 +169,7 @@
169169
if (this.prepend && targetEl.firstChild) {
170170
targetEl.insertBefore(el, targetEl.firstChild);
171171
} else {
172-
targetEl.append(el);
172+
targetEl.appendChild(el);
173173
}
174174

175175
this.container = new TargetContainer({

‎package/dist/index.umd.min.js

Copy file name to clipboardExpand all lines: package/dist/index.umd.min.js
+2-2Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.