[Proto-Scripty] Re: method ON vs OBSERVE

2011-10-16 Thread clockworkgeek
I find IE doesn't bubble it's field-related events properly so you still need to use `observe` for those cases. As a fix I suppose 'on' could search it's children for fields and manually apply `observe` on those but it wouldn't be ideal, dynamically added fields would be exempt. -- You received

[Proto-Scripty] strange problem with detect method and cloning data

2011-10-16 Thread buda
I have a class var a = Class.Create({ function initialize() { var _items = []; Object.defineProperties(this, { 'items': { get: function () { return Object.clone(_items); }, enumerable: true } }); ... } function indexOf(item) { return