Skip to content

Commit

Permalink
Merge pull request goatslacker#678 from PedroPinheiro/patch-1
Browse files Browse the repository at this point in the history
Fix inheritance of actions
  • Loading branch information
goatslacker authored Aug 30, 2016
2 parents f4c1bff + 46555b2 commit 5b41cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/AltUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function getPrototypeChain(Obj, methods = {}) {
? methods
: getPrototypeChain(
Object.getPrototypeOf(Obj),
fn.assign(methods, getInternalMethods(Obj, true))
fn.assign(getInternalMethods(Obj, true), methods)
)
}

Expand Down

0 comments on commit 5b41cad

Please sign in to comment.