-
Notifications
You must be signed in to change notification settings - Fork 318
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
New getting started doc #969
Conversation
Although I do not see it in this PR, I will mention it here since it is in the context: In the example for events in docs: class MyElement extends LitElement {
render() {
return html`<div>Hello World</div>`;
}
updated(changedProperties) {
let click = new Event('click');
this.dispatchEvent(click);
}
} Specifically, in Proof: > const foo = { pie: 'apple' }
undefined
> foo.pie = 'blueberry';
'blueberry'
> foo = 'not going to happen';
Thrown:
TypeError: Assignment to constant variable. |
@arthurevans as the PR is a draft, you can convert it here instead of adding draft to the title 😄 |
I swear I looked all over for that UI before I just gave up and edited the title, @abdonrd 😂 |
@dman777 you're right, but it seems unrelated... Do you want to open a PR? |
Addressed feedback and restaged. Unless someone sees a showstopper, I'll roll this out Monday. |
Thanks for all the great feedback, folks! Update is live. |
New draft getting started doc. Staged at:
https://new-getting-started-dot-polymer-lit-element.appspot.com
Leaving this PR open for feedback until Friday, 4/24.