You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The one problem I see is that the standard "select all" selector doesn't work using the :_;
None of these work: Slick.find('ns|_')Slick.find('ns\:*')Slick.find('ns\\:*')
good point.
You could implement that with a custom pseudoclass though.
e.g. Slick.search(document, '*:ns(foo)')
Not ideal, obviously, but it would work.
The implementation of the custom pseudo could be something like function(ns){ return this.nodeName.split(':')[0] == ns }. There may be a faster way to do it, but that should work.
Thomas Aylott SubtleGradient MooTools Sencha
On Nov 15, 2011, at 1:23 PM, Chase wrote:
The one problem I see is that the standard "select all" selector doesn't work using the :_;
None of these work: Slick.find('ns|_')Slick.find('ns\:*')Slick.find('ns\\:*')
Reply to this email directly or view it on GitHub: #65 (comment)
Slick doesn't support CSS3 namespace selectors:
The text was updated successfully, but these errors were encountered: