Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
html-custom-elements
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
JadeProListening
html-custom-elements
Commits
5dbd995f
Commit
5dbd995f
authored
Sep 20, 2016
by
Stephanus Volke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix wrong parameter in html-custon-elements.js
parent
c96ffe32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
html-custom-element.js
src/html-custom-element.js
+1
-1
No files found.
src/html-custom-element.js
View file @
5dbd995f
...
...
@@ -66,7 +66,7 @@ export class HTMLCustomElement extends HTMLElement {
mutations
.
forEach
((
mut
)
=>
{
if
(
mut
.
attributeName
in
elem
.
Attr
)
{
for
(
let
fun
of
elem
.
Attr
[
mut
.
attributeName
])
{
fun
(
mut
.
oldValue
,
mut
.
target
[
mut
.
attributeName
]);
fun
(
mut
.
target
,
mut
.
target
[
mut
.
attributeName
]);
}
}
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment