Skip to content

Commit a0c60b7

Browse files
committed
chore: remove console.log
1 parent 7a33ec2 commit a0c60b7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/core/render/compiler.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ function getAndRemoveConfig (str = '') {
1717
if (str) {
1818
str = str
1919
.replace(/:([\w-]+)=?([\w-]+)?/g, (m, key, value) => {
20-
console.log(key, value)
2120
config[key] = (value && value.replace(/"/g, '')) || true
2221
return ''
2322
})
@@ -47,7 +46,6 @@ const compileMedia = {
4746
}
4847
},
4948
iframe (url, title) {
50-
console.log(title)
5149
return `<iframe src="${url}" ${title || 'width=100% height=400'}></iframe>`
5250
},
5351
video (url, title) {

0 commit comments

Comments
 (0)