-
Notifications
You must be signed in to change notification settings - Fork 2
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
Allow passing jquery element #26
Conversation
can-view-model_test.js
Outdated
@@ -2,6 +2,7 @@ var QUnit = require('steal-qunit'); | |||
var viewModel = require('can-view-model'); | |||
var SimpleMap = require('can-simple-map'); | |||
var types = require('can-types'); | |||
var $ = require("can-jquery"); |
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.
Hm, I wonder if instead of bringing in a dependency just for this test, the test should just create its own array-like object.
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.
hey @chasenlehara thank you the test has been edited
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.
LGTM, thanks @cherifGsoul!
this implements #21