fix class ArraySelector for analyzer

This commit is contained in:
Kevin Schaaf
2017-03-03 15:40:19 -08:00
parent 822437516a
commit fa37505a69

View File

@@ -390,7 +390,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* @summary Custom element that links paths between an input `items` array and
* an output `selected` item or array based on calls to its selection API.
*/
const ArraySelector = class extends ArraySelectorMixin(Polymer.Element) {
class ArraySelector extends ArraySelectorMixin(Polymer.Element) {
// Not needed to find template; can be removed once the analyzer
// can find the tag name from customElements.define call
static get is() { return 'array-selector' }