aboutsummaryrefslogtreecommitdiffstats
path: root/dist/plyr.polyfilled.js
diff options
context:
space:
mode:
Diffstat (limited to 'dist/plyr.polyfilled.js')
-rw-r--r--dist/plyr.polyfilled.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/dist/plyr.polyfilled.js b/dist/plyr.polyfilled.js
index 7b5b20ee..96054306 100644
--- a/dist/plyr.polyfilled.js
+++ b/dist/plyr.polyfilled.js
@@ -7094,8 +7094,12 @@ var utils = {
return;
}
- Object.keys(attributes).forEach(function (key) {
- element.setAttribute(key, attributes[key]);
+ Object.entries(attributes).forEach(function (_ref) {
+ var _ref2 = slicedToArray(_ref, 2),
+ key = _ref2[0],
+ value = _ref2[1];
+
+ element.setAttribute(key, value);
});
},