A simple fix. The error I received was:
Method : "sendNotification" from [function Notifier()] is not implemented by [function MacroCommand()]
Index: src/main/javascript/org/puremvc/js/core/PureMVC_JS_1_0.js
===================================================================
@@ -364,7 +364,7 @@
this._subCommands = new Array();
this._initializeMacroCommand();
}
- Objs.implement(MacroCommand,Notifier);
+ Objs.extend(MacroCommand,Notifier);
Objs.implement(MacroCommand,ICommand);
Objs.implement(MacroCommand,INotifier);
var o = MacroCommand.prototype;