6c10e1df by Michael Richards

Replace array detection with ES5's Array.isArray.

1 parent 70452402
......@@ -31,7 +31,7 @@ Rivets.adapters['.'] =
response
observeMutations: (obj, ref, keypath) ->
if Object.prototype.toString.call(obj) is '[object Array]'
if Array.isArray obj
map = @weakReference obj
unless map.pointers?
......