Polymer 2.0: Mixins Confusion

Polymer 2.0 shifts the inheritance tree of elements from behaviors to mixins. These are decorators applied to the superclass declarations, and work like functions. The Polymer documentation spends a few cycles on the subject matter, but, at least for me, left a whole lot to be desired when it came to explaining how multiple mixins…

Polymer 2.0: Legacy APIs

Well, there will be time for a more thorough look later, but one of the first things that is apparently lost is the convenience of the debounce function. This was a very nice, very convenient function to collapse multiple calls into one, something that very easily happens with data bindings firing an event for every single…