Changeset 9511

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

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

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Open-ILS/web/js/dojo/fieldmapper/Fieldmapper.js

    r9380 r9511  
    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