Skip to content

Commit 2c9ffac

Browse files
author
Steven Orvell
committed
Fix dedupingMixin
1 parent f04d631 commit 2c9ffac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/utils/mixin.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
* mixin applications to base
5454
*/
5555
Polymer.dedupingMixin = function(mixin) {
56-
let cachedMixin = cachingMixin(mixin);
56+
mixin = cachingMixin(mixin);
5757
// maintain a unique id for each mixin
58-
cachedMixin.__dedupeId = ++dedupeId;
58+
mixin.__dedupeId = ++dedupeId;
5959
return function(base) {
6060
let baseSet = base.__mixinSet;
6161
if (baseSet && baseSet[mixin.__dedupeId]) {

0 commit comments

Comments
 (0)