Skip to content

Commit

Permalink
Changing '<>' link to boxed '?'
Browse files Browse the repository at this point in the history
  • Loading branch information
swmitra committed Dec 10, 2015
1 parent ca9b0f1 commit 84e3cb4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/extensions/default/JavaScriptCodeHints/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ define(function (require, exports, module) {

function _appendLink() {
if (token.url) {
$('<a><&nbsp;></a>').appendTo($hintObj).addClass("jshint-link").attr('href', token.url).on("click", function (event) {
$('<a></a>').appendTo($hintObj).addClass("jshint-link").attr('href', token.url).on("click", function (event) {
event.stopImmediatePropagation();
event.stopPropagation();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,18 @@ span.brackets-js-hints {
.jshint-link {
float:right;
display:none;
color:orangered !important;
margin:0px !important;
margin-right: 10px !important;
padding:0px !important;
font-weight: 900 !important;
}

.jshint-link:before {
float: right;
color: orangered !important;
content: '?' !important;
border: 1px orangered solid;
width: 10px;
text-align: center;
line-height: 1em;
visibility: visible !important;
}

.highlight .jshint-link {
Expand Down

0 comments on commit 84e3cb4

Please sign in to comment.