src/FeatureTimeline/featuretimeline.html [34:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
title = title + " Beta";
}
// Register the fully-qualified contribution id here.
// Because we're using the contribution id, we do NOT need to define a registeredObjectId in the extension manfiest.
VSS.register(contribution.id, {
pageTitle: title,
// We set the "dynamic" contribution property to true in the manifest so that it will get the tab name from this function.
name: title,
title: title,
updateContext: updateConfiguration,
isInvisible: function (state) {
return false;
}
});
}
}
let previousContext = null
function updateConfiguration(tabContext) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/PortfolioPlanning/PortfolioPlanning.html [33:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
title = title + " Beta";
}
// Register the fully-qualified contribution id here.
// Because we're using the contribution id, we do NOT need to define a registeredObjectId in the extension manfiest.
VSS.register(contribution.id, {
pageTitle: title,
// We set the "dynamic" contribution property to true in the manifest so that it will get the tab name from this function.
name: title,
title: title,
updateContext: updateConfiguration,
isInvisible: function (state) {
return false;
}
});
}
}
let previousContext = null
function updateConfiguration(tabContext) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -