dustinspecker/generator-ng-poly

View on GitHub
lib/element/templates/_element.es6

Summary

Maintainability
Test Coverage
/* global Polymer */
(function () {
  'use strict';

  let element = new Polymer({
    is: '<%= hyphenName %>',
    ready: () => {
      console.log('<%= hyphenName %>');
    }
  });

  return element;
}());