Skip to content

Commit 5f57db4

Browse files
authored
Merge pull request #394 from tableau/wrap-community-links
Wrap community links
2 parents e40ef11 + e51b13f commit 5f57db4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

assets/css/main.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ html {
191191

192192

193193
/* Community connectors */
194+
.wrapLink {
195+
overflow-wrap: anywhere;
196+
}
197+
194198
.thumbnail {
195199
background-color: #fff;
196200
border: 1px solid #ccc;

assets/js/community_extensions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function append(extension) {
2121
}
2222

2323
if (extension.website) {
24-
h += '<p><b>More Details: </b><a href="' + extension.website + '" alt="Source code link">' + extension.website + '</a></p>';
24+
h += '<p><b>More Details: </b><a href="' + extension.website + '" alt="Source code link" class="wrapLink">' + extension.website + '</a></p>';
2525
}
2626

2727
if (extension.source_code) {

0 commit comments

Comments
 (0)