Quantcast
Channel: Gurock Software Support Forum
Viewing all articles
Browse latest Browse all 829

[UI Script] Add a new item to the Help menu

$
0
0

The following UI script adds a new item to the Help menu (a second User Guide link for a different language):

name: Add a new item to the Help menu
description: Adds a new item to the Help menu
author: Gurock Software
version: 1.0
includes: 
excludes: 

js:
$(document).ready(
    function() {
        $('#helpDropdown').css('width', 225);
        $('#helpDropdown ul li:eq(0)').removeClass('withBorder').after('<li class="withBorder"><a target="_blank" href="http://www.google.com/"><span>TestRail User Guide (Japanese)</span></a></li>');
    }
);

Regards,
Tobias


Viewing all articles
Browse latest Browse all 829

Trending Articles