-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Conversation
FYI, the JSLint functionality is currently be re-factored out of Brackets core and into an extension in pull request #3143, so this change will have to be co-ordinated with that one. |
Looks like this would be easy to re-integrate after #3143 has landed, just modify extensions/default/JSLint/main.js as you modified language/JSLintUtils.js now. |
Not completely the same, since the new extension uses a template and event delegation, so the link should be added to the template and the event, can be added as if inside the click event on the table (you can get the reason from the table content) or one event for each link. I think that
To each cell, in the css inside the extension. |
@TomMalbran The user-select mode may not work like you would expect in this situation. It may need a little more thought if you do something like that. That's what I was originally had, but someone on chat suggested the auto search. Can't remember his name though. I like the template and event binding. After using angular js for so long it felt so wrong(and weird) adding that little bit of code and click event. Haha |
You are right, I tested it and it didn't work, not sure why thought. I guess that a search isn't that bad then, it is even what you usually want to do when copying it anyway. Most of this jQuery things were done before adding Mustache as the template system, and where not changed. I also find it wrong to be making a whole template like this, so I've been changing most to use Mustache instead. |
#3143 is in, so this could now be revisited |
FYI. We may want to consider linking to this site (or pulling in their data). |
Closing -- looks like #3304 supersedes this. |
#3131
May need a little more discussion completing the issue but this is a start.