From 8093a6c106bbe630a27e36bad449130394b022fd Mon Sep 17 00:00:00 2001 From: Dan Allison Date: Sat, 15 Jul 2017 14:13:55 -0700 Subject: [PATCH] Remove trailing comma For some reason, this was tripping up asset compression. --- app/assets/javascripts/client/ui/commandTypeahead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/client/ui/commandTypeahead.js b/app/assets/javascripts/client/ui/commandTypeahead.js index 4a92e79..8fbc799 100644 --- a/app/assets/javascripts/client/ui/commandTypeahead.js +++ b/app/assets/javascripts/client/ui/commandTypeahead.js @@ -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 + '"');