Home General Discussion

Cireson - Service Catalog - Remove Favorites / Icon

CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

Dear All,

I have some code to remove favorites from SC, but now have an issue when hovering over and trying to select the icon from SC it doesn't open up the SC item. Here is the code:

// Removing favorite button from SC/RO

$(document).ready(function () {

setTimeout(function() {

var url = window.location.href;

if (url.indexOf("ServiceCatalog/RequestOffering") > 0 ) {

$('button:contains("Favorite")').hide();

}

}, 500);

}); 

So I would like to:

Remove favorites from SC

Change the way the icon works to open up the SC item a well.

Any help with this would be appreciated.

Daniel

Best Answer

Answers

Sign In or Register to comment.