This commit is contained in:
Caleb James DeLisle
2017-08-09 17:37:55 +02:00
parent e49a42db18
commit c304071492
9 changed files with 359 additions and 239 deletions

View File

@@ -0,0 +1,17 @@
define([], function () {
var metadataChange = function (ctx, newMeta) {
};
var getMetadata = function (ctx) {
};
var create = function (sframeChan, cpNfInner) {
var ctx = {
sframeChan: sframeChan,
personalMetadata: {}
};
};
return { create: create };
});