If you'd like this functionality, you can add the following BugMonkey script:
name: Star cases from case popups
description: Star a case from the popup that appears when you hover on a case ID
author: Daniel LeCheminant
version: 1.0.0.0
js:
if (!window.IdPop) return;
IdPop.show = (function(fnOld) {
return function() {
var sixBug = $("#caseIdContent").find("a.headline-inverse").text();
var ixBug = /\d+/.exec(sixBug)[0];
var a =
$('<a title="Toggle star" src="javascript:void(0)"/>')
.addClass("starEmpty")
.css("margin-right", "2px")
.prependTo("#idAreaProject");
var img = $('<img alt="*"/>')
.css("vertical-align", "middle")
.attr("src", StaticContentUrl("images/clear.gif"))
.appendTo(a);
FavoritesIcons.register(img[0], 'Bug', ixBug, 1, false);
fnOld.call(IdPop);
}
})(IdPop.show);
which will make your popups look like this:
