-
Notifications
You must be signed in to change notification settings - Fork 4
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
search for dynamic css? #14
Comments
Here are some examples of dynamic CSS
var class = 'time-' + ( j == 1 ? 'start' : 'end' ) + '-cell';
997: var a = "<div class='" + ((data.overdue == 1) ? 'task-overdue' : 'task-current' ) + "-hover-header'>" + data.action + " ( " + data.something + " ) " +
|
I would leave this to the user's discretion. |
Maybe we can list "possible" matches by doing something like rg yoursearch.*andtherestofit Maybe as a first pass, we can do something like the following
How does a selector look dynamic? For now we can go with keywords like Grepping for it: Example selector: Example pattern: The more examples of dynamic css we can get, the better. QuestionsShould we bother doing the exact string match if a selector looks dynamic? |
For example, if it finds something like
Maybe it should warn
Or it could keep backtracking and searching for img-file-pdf, img-file-pd img-file-d etc...
until it gets a match?
The text was updated successfully, but these errors were encountered: