Skip to content
Snippets Groups Projects
Commit d67628a2 authored by juanf's avatar juanf
Browse files

SSDM-2340 : Support open on new tab for all javascript links.

SVN: 34469
parent e4310f28
No related branches found
No related tags found
No related merge requests found
......@@ -575,4 +575,12 @@ table.downloads {
*/
.browser-compatible-javascript-link {
text-decoration: none;
}
.browser-compatible-javascript-link-menu {
color: #000000;
}
.browser-compatible-javascript-link-menu:hover {
color: #FFFFFF;
}
\ No newline at end of file
......@@ -303,7 +303,7 @@ function SideMenuWidgetView(sideMenuWidgetController, sideMenuWidgetModel) {
var $menuItemLink = null;
if (menuItem.isSelectable) {
$menuItemLink = $("<a>", {"href": href, "class" : "browser-compatible-javascript-link", "style" : "color: #000000"}).append(itemDisplayName);
$menuItemLink = $("<a>", {"href": href, "class" : "browser-compatible-javascript-link browser-compatible-javascript-link-menu" }).append(itemDisplayName);
} else {
$menuItemLink = itemDisplayName;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment