Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/command-logger.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ class CommandLogger
#
# * `command` Command {Object} to be logged
# * `type` Name {String} of the command
# * `target` {String} describing where the command was triggered
# * `target` {Object} Node where the command was triggered
logCommand: (command) ->
{type: name, target, time} = command
{type: name, time} = command
target = command.target ? {}
return if command.detail?.jQueryTrigger
return if name of ignoredCommands

Expand Down