Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.8] template x-repeat throws error under native ShadowDOM #1244

Closed
frankiefu opened this issue Mar 3, 2015 · 1 comment
Closed

[0.8] template x-repeat throws error under native ShadowDOM #1244

frankiefu opened this issue Mar 3, 2015 · 1 comment
Labels

Comments

@frankiefu
Copy link
Member

The following code when run under native ShadowDOM will cause error: Uncaught TypeError: Cannot read property 'debounce' of undefined x-repeat.html:139

<dom-module id="x-app">

  <template>

    <template is="x-repeat" items="[[items]]">
      <div>[[item.name]]</div>
    </template>

  </template>

</dom-module>

<script>

  Polymer({

    is: 'x-app',

    configure: function() {
      return {
        items: [{name: 'foo'}, {name: 'bar'}, {name: 'zot'}]
      }
    }

  });

</script>
@sorvell sorvell added 0.8 and removed 0.8 labels Mar 5, 2015
@sorvell
Copy link
Contributor

sorvell commented Mar 5, 2015

Fixed via 7c7e426

@sorvell sorvell closed this as completed Mar 5, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants