We had this extension working under tfs 2013 that simply hides the quick add panel for backlog items (see code below). The code stopped working after we updated the server to tf
Your manifest needs to be updated to load at a more specific time and with the right TFS version (14.0
):
And I updated the javascript code to:
TFS.module("HideAddPanel", [ "VSS\\Utils\\Core",
"VSS\\Utils\\UI"], function () {
$(".panel-region").hide();
$("#mi_51").hide(); // Hides the New button.
});
This seems to work for me.