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

[UI Script] Adding a tab to projects

$
0
0

For those who were previously using the UI script on TestRail 3.0 to add a new tab to projects, here is the difference between versions:


TestRail Version 3.x:

name: Adds a new tab to projects for TestRail version 3.x
description: Adds a new tab to projects for TestRail version 3.x
author: Gurock Software
version: 1.0
includes: ^cases|^tests
excludes: 

js:
$(document).ready(
    function() {
            $('#mainMenu ul').append(
                '<li><a href="http://www.myurl.com">My website</a></li>');
    }
);


TestRail Version 4.0:

name: Adds a new tab to projects for TestRail version 4.0
description: Adds a new tab to projects for TestRail version 4.0
author: Gurock Software
version: 1.1
includes: ^cases|^tests
excludes: 

js:
$(document).ready(
    function() {
            $('#header').append(
                '<li class="header-menu-item"><a tabindex="-1" href="http://www.myurl.com">My Website</a></li>');
    }
);

Viewing all articles
Browse latest Browse all 829

Trending Articles