[Framework] Document implementation

Document implementation more fully, including notes on
composite services. WTD-518.
This commit is contained in:
Victor Woeltjen
2014-11-05 17:25:10 -08:00
parent 9e61e89da4
commit ea4619c3d8
2 changed files with 125 additions and 2 deletions

View File

@ -29,8 +29,8 @@ define(
// so that these can be registered separately with Angular
function identify(category, extension, index) {
var name = extension.key ?
(extension.key + "-" + index) :
index;
("extension-" + extension.key + "#" + index) :
("extension#" + index);
return category + "[" + name + "]";
}