Changeset 9512

Show
Ignore:
Timestamp:
05/06/08 12:21:22 (2 weeks ago)
Author:
erickson
Message:

Merged revisions 9511 via svnmerge from
svn://svn.open-ils.org/ILS/trunk

........

r9511 | erickson | 2008-05-06 12:13:09 -0400 (Tue, 06 May 2008) | 1 line


can't call .splice on the arguments object, found some JS voodoo to do the same thing

........

Location:
branches/acq-experiment
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/acq-experiment

    • Property svnmerge-integrated changed from /trunk:1-9506 to /trunk:1-9511
  • branches/acq-experiment/Open-ILS/web/js/dojo/fieldmapper/Fieldmapper.js

    r9380 r9512  
    9393                                args = params; 
    9494                        } else { 
    95                                 args.params = arguments.splice(1, arguments.length - 1); 
     95                args.params = [].splice.call(arguments, 1, arguments.length - 1); 
    9696                        } 
    9797