Skip to content

Commit

Permalink
2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
javan committed Feb 28, 2019
1 parent 8188bb3 commit 0f1404b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/details-element-polyfill.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Details Element Polyfill 2.3.0
Details Element Polyfill 2.3.1
Copyright © 2019 Javan Makhmali
*/
(function() {
Expand Down Expand Up @@ -109,7 +109,7 @@ Copyright © 2019 Javan Makhmali
forEach.call(mutations, function(mutation) {
var target = mutation.target, attributeName = mutation.attributeName;
if (target.tagName == "DETAILS" && attributeName == "open") {
triggerToggle(toggle);
triggerToggle(target);
}
});
}).observe(document.documentElement, {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "details-element-polyfill",
"version": "2.3.0",
"version": "2.3.1",
"description": "HTML <details> element polyfill",
"main": "dist/details-element-polyfill.js",
"files": [
Expand Down

0 comments on commit 0f1404b

Please sign in to comment.