-
Notifications
You must be signed in to change notification settings - Fork 76
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
TodoMVC jQuery: fix clear completed button #364
Conversation
@@ -2,6 +2,7 @@ | |||
"name": "todomvc-jquery", | |||
"private": true, | |||
"scripts": { | |||
"dev": "http-server . -p 7001 -c-1 --cors", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not a fix here, but to be consistent with other framework scripts, added it here...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah that's useful :-) thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the quick turnaround!
Do you think you can wait for #360 to land before landing this one, to avoid that @issackjohn has to rebase the big patch? (even though I think there wouldn't be a conflict in this case)
Thanks - yes, this can wait 😄 |
Switched 'id' to 'class' for 'clear-completed'.
This is necessary for the css rules to apply correctly.
Fixes issue #363
@kara