File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
- Added link back to IRIS management portal from Settings, Git WebUI pages (#449 )
14
14
- Added Import all and Import All (Force) to basic mode menu (#498 )
15
15
- Improved behavior for commits when attribution settings are not configured (#450 )
16
+ - Convert URLs in Sync output UI into clickable links (#497 )
16
17
17
18
### Fixed
18
19
- Changed prompts in configure from 0/1 to no/yes (#461 )
Original file line number Diff line number Diff line change 147
147
&js<
148
148
var outputContainer = document.getElementById('outputBox');
149
149
var lineText = #(..QuoteJS(escapedLine))#;
150
- var lineTextNode = document.createTextNode(lineText);
150
+ var urlRegex = /(https?:\/\/[^ ]*)/gi;
151
+ lineText = lineText.replace(urlRegex, "<a href='$1' target=_blank>$1</a>");
151
152
outputContainer.innerHTML += lineText + "<br>";
152
153
>
153
154
}
You can’t perform that action at this time.
0 commit comments