Changeset 8897
- Timestamp:
- 04/30/08 01:24:46 (7 months ago)
- Files:
-
- sandbox/minibase/trunk/modules/helma/minibase.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/minibase/trunk/modules/helma/minibase.js
r8894 r8897 77 77 }; 78 78 79 object.__proto__ = this; 80 return new JSAdapter(object); 79 // make object our prototype and wrap self into JSAdapter 80 this.__proto__ = object; 81 return new JSAdapter(this); 81 82 } 82 83