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
Is it really good idea to use global var items? We operate it in the cart collection`s add event.
items
We should customize Backbone.sync to handle it, shouldn`t we?
The text was updated successfully, but these errors were encountered:
You're right - there's no need for items to be global. I would probably move it inline and just do:
new CartCollextion([ {item1...}, {item2...} ])
Or similar. Of course, if you have a server, it would make more sense to set up the collection to fetch from the server.
Sorry, something went wrong.
No branches or pull requests
Is it really good idea to use global var
items
? We operate it in the cart collection`s add event.We should customize Backbone.sync to handle it, shouldn`t we?
The text was updated successfully, but these errors were encountered: