Closed GoogleCodeExporter closed 9 years ago
here's the code section in base2.js that reports the error in FF3:
// ========================================================================
// base2/Array2.js
// ========================================================================
// This module implements all Array methods.
// This module is not public but its methods are accessible through the Array2
object
(below).
var IArray = Module.extend({
combine: function(keys, values) {
// combine two arrays to make a hash
if (!values) values = keys;
*ERROR LINE* return this.reduce(keys, {}, function(object, key, index) {
object[key] = values[index];
return object;
});
},
Original comment by mca%amun...@gtempaccount.com
on 9 Apr 2008 at 4:22
Can you provide a test page please?
Original comment by dean.edw...@gmail.com
on 9 Apr 2008 at 4:24
here's a public page that should show the error:
http://amundsen.com/examples/ff3-base2/index.html
works in FF2, but not in FF3.
Original comment by mca%amun...@gtempaccount.com
on 9 Apr 2008 at 6:10
You are using an ancient version of base2. :-)
The latest version is here:
http://base2.googlecode.com/svn/version/
Original comment by dean.edw...@gmail.com
on 10 Apr 2008 at 5:50
*sigh*
sorry 'bout that. i'll update and continue on.
thanks.
Original comment by mca%amun...@gtempaccount.com
on 10 Apr 2008 at 7:37
Original issue reported on code.google.com by
mca%amun...@gtempaccount.com
on 9 Apr 2008 at 4:20