Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
_.invoke doesn't work anymore :-(
  • Loading branch information
koenbok committed Aug 2, 2016
1 parent f75ec6a commit 2a84e68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framer/Extras/Hints.coffee
Expand Up @@ -29,7 +29,7 @@ class Hints

showHints: ->
context = Framer.CurrentContext
@_context.run => _.invoke(context.rootLayers, "_showHint")
@_context.run => _.invokeMap(context.rootLayers, "_showHint")

destroy: ->
@_context.destroy()
Expand Down
2 changes: 1 addition & 1 deletion framer/Layer.coffee
Expand Up @@ -1237,7 +1237,7 @@ class exports.Layer extends BaseClass
@showHint(frame)

# Tell the children to show their hints
_.invoke(@children, "_showHint")
_.invokeMap(@children, "_showHint")

willSeemToDoSomething: ->

Expand Down

0 comments on commit 2a84e68

Please sign in to comment.