Skip to content

Commit

Permalink
Remove trailing comma
Browse files Browse the repository at this point in the history
For some reason, this was tripping up asset compression.
  • Loading branch information
danallison committed Jul 15, 2017
1 parent d35e155 commit 8093a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/client/ui/commandTypeahead.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ calculist.register('commandTypeahead', ['_','eventHub'], function (_, eventHub)
// which is why they are added conditionally.
availableCommands.push(
'new list ""','goto list','go home','follow link',
'share list with ""','stop sharing list','stop sharing list with ""',
'share list with ""','stop sharing list','stop sharing list with ""'
);
_.each(window.OTHER_LISTS, function (otherList) {
availableCommands.push('goto list "' + otherList.title + '"');
Expand Down

0 comments on commit 8093a6c

Please sign in to comment.