-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Conversation
There's an issue with opening multiple tabs. Looking into it. |
@@ -54,7 +54,7 @@ html, body { | |||
cursor: default; | |||
|
|||
/* Turn off subpixel antialiasing on Mac since it flickers during animations. */ | |||
-webkit-font-smoothing: antialiased; | |||
-webkit-font-smoothing: subpixel-antialiased; |
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.
Looks like this diff snuck in (I think you've been making this change locally) - could you remove it?
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.
Will do. Yea I committed some local changes by accident.
Cool, this is looking good overall--just a few code comments. Also, the "i" icon looks a bit big and slightly vertically off-center to me. @larz0 - would it make sense to decrease the size of the "i" icon slightly (see screenshot above)? |
@drewhjava here's the update icon based on @njx's feedback http://cl.ly/0I2b1T3Q1F3F. Thanks~ |
@drewhjava - the new icon looks pretty good. Looks like there are still a few comments from the previous review that need addressing. I'm out for the next couple of weeks, so I'm reassigning this to @gruehle - please add a note when you've dealt with the other comments. Thanks. |
Maybe it's not necessary given how great Google is, but I wonder if we should do anything do avoid polluting the search query with parts of the message that are specific to the user's code. E.g. for the JSLint error "'foo' was used before it was defined" you probably don't want to include 'foo' in the search since it's unlikely anyone else will have the same string there. I think we could accomplish that by looking at |
Another thought -- what about linking to http://jslinterrors.com/ ? It looks like its search function gets matches on the unmodified |
@drewhjava Just noticed this when reviewing some old pull requests. Are you still interested in pursuing this? The linting system now uses a generic UI managed by CodeInspection.js, with JSLint as only one of many potential result providers. So I think we'd need to consider how to change this into a generic way for any provider to specify 'more info' links (or clickable icons in general?). If you're interested I think we'd be happy to review that change -- but it would be different enough from this patch that I think we'd want to start a new pull request for it. So I'll close this one -- but feel free to open an updated PR any time! Thanks for your efforts! |
I think this is what you guys wanted as far as layout and hover.
I used the row-highlight class as the hover detection. I didn't see that class used anywhere else but it maybe wise to add a class id to the jslint table.
Thanks