underscore-observe
underscore-observe copied to clipboard
This is an extension to Underscore that allows you to add observer functions to any standard JavaScript Array.
If an array element is modified by reference (or an object inside the object), AKA without using the array methods, will this library catch the change?
`create` event isn't been triggered when we using a `string` for an `Array` index. E.g: ``` var myArr = [ 'a' => 'a' ]; _.observe( myArr, 'create', function( item, index...
Could you please include bower support in your pluggin. Thanks
Because of node repl's use of the _ variable. ``` $ node > var _ = require('underscore') undefined > _.each TypeError: Cannot read property 'each' of undefined at repl:1:3 at...
All tests are passing. Usage: ``` und = require('underscore'); observableMixin = require('./assets/js/lib/underscore.observable.js'); observableMixin(und); ``` Maybe it should be taking a guess at the existence of the _ variable when it's...