powmedia/backbone-forms

lodash 4.x support

ludoo0d0a opened this issue · 1 comments

Please add lodash 4.x support

This code won't work anymore :

    _.each(fieldsetSchema, function(itemSchema) {
      this.fieldsets.push(this.createFieldset(itemSchema));
    }, this);

Because :

Removed thisArg params from most methods because they were largely unused, complicated implementations, & can be tackled with _.bind, Function#bind, or arrow functions

https://github.com/lodash/lodash/wiki/Changelog#v400