-
Notifications
You must be signed in to change notification settings - Fork 421
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
util/zepto doesn't use $.fn.remove() #651
Conversation
Can you please describe a bit more what you are talking about? Some context and an example would be great. |
Also, jQuery functions on collections are typically referred to as And what does |
Sure. I often use a plugin called "motion notion" for simple things not involving data/contexts. It extends Edit: |
@stevenvachon it's a best practice to identify something by where / how it is defined, not by how it's called. Also, one calls jQuery will refer to
|
If it were official documentation, I'd have thought it necessary to investigate more accurate labels, but if it's that important for GitHub, ok, I'll keep it in mind. I didn't think |
It's important because I want to understand what you are talking about as quickly as possible. I was left wondering if CanJS was overwriting Unfortunately, I don't have a lot of time to spend thinking about what is "meant". Labels like |
Cool, I'll aim for that next time then. Original post updated. |
|
Does this mean this is a non-issue? |
It's still an issue. I'd just had an idea that didn't work. |
Looks like util/zepto overwrites Zepto's methods instead of extend them (specifically |
util/zepto doesn't use $.fn.remove()
Instead it removes some data and uses
removeChild()
. This creates an issue with Zepto/jQuery plugins that extend$.fn.remove()
.