factotvm
|
 |
« on: February 13, 2009, 03:06:30 » |
|
Here's the patch I created to fix the issue:
Index: src/main/javascript/org/puremvc/js/core/PureMVC_JS_1_0.js =================================================================== @@ -623,9 +623,9 @@ }; o.toString = function() { - var msg = "Notification Name:"+getName(); - msg += "\nBody:"+(( body == null )?"null":body.toString()); - msg += "\nType:"+(( type == null )?"null":type); + var msg = "Notification Name:"+this._name; + msg += "\nBody:"+(( this._body == null )?"null":this._body.toString()); + msg += "\nType:"+(( this._type == null )?"null":this._type); return msg; }; }
|