Skip to content

Commit 00cba42

Browse files
committed
Removed debug outputs
1 parent 8c6a346 commit 00cba42

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-element",
3-
"version": "0.0.208",
3+
"version": "0.0.209",
44
"description": "",
55
"license": "LGPL-3.0",
66
"main": "./index.js",

src/main/js-element.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ function addAttributeHandling(
365365
) as any
366366

367367
if (typeof value === 'string') {
368-
console.log(9, attrName)
369368
this[propName] = mapAttrToProp(value)
370369
}
371370
}
@@ -388,7 +387,6 @@ function addPropHandling(obj: any) {
388387
},
389388

390389
set(value: any) {
391-
console.log(5555, propName)
392390
propValue = value
393391

394392
if (propConfig.hasAttr && propConfig.reflect) {
@@ -403,7 +401,7 @@ function addPropHandling(obj: any) {
403401
ignoreAttributeChange = false
404402
}
405403
}
406-
console.log('refresh')
404+
407405
ctrl.refresh()
408406
}
409407
})

0 commit comments

Comments
 (0)