We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Demos doesn't work on 2.0-preview
There are few things to make them work again:
<style is="custom-style">
<custom-style><style is="custom-style"></style></custom-style>
<template is="dom-bind">
<dom-bind><template is="dom-bind"></template></dom-bind>
<link rel="import" href="../../polymer/lib/elements/dom-bind.html">
@apply
@apply(--mixin);
@apply --mixin;
The text was updated successfully, but these errors were encountered:
I've made the changes in the iron-swipeable-pages.html. It's not working though. @myfrom
iron-swipeable-pages.html
Sorry, something went wrong.
No branches or pull requests
Demos doesn't work on 2.0-preview
There are few things to make them work again:
<style is="custom-style">
to<custom-style><style is="custom-style"></style></custom-style>
(Hybrid syntax valid for 2.0 and 1.0)<template is="dom-bind">
to<dom-bind><template is="dom-bind"></template></dom-bind>
(Hybrid syntax valid for 2.0 and 1.0)<link rel="import" href="../../polymer/lib/elements/dom-bind.html">
to load dom-bind (required in 2.0)@apply
mixins to new syntax=>@apply(--mixin);
@apply --mixin;
The text was updated successfully, but these errors were encountered: