From b9248d3e2c3084fb4bc51cdf09d50b2812b5aaa4 Mon Sep 17 00:00:00 2001 From: Liv Galendez Date: Wed, 18 Feb 2015 10:34:23 +1100 Subject: [PATCH] Fixed typo in empty cart error message --- .../javascripts/darkswarm/directives/empties_cart.js.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/darkswarm/directives/empties_cart.js.coffee b/app/assets/javascripts/darkswarm/directives/empties_cart.js.coffee index b49131afa6..51e960867b 100644 --- a/app/assets/javascripts/darkswarm/directives/empties_cart.js.coffee +++ b/app/assets/javascripts/darkswarm/directives/empties_cart.js.coffee @@ -8,6 +8,6 @@ Darkswarm.directive "ofnEmptiesCart", (CurrentHub, Cart, Navigation, storage) -> if CurrentHub.hub?.id and CurrentHub.hub.id isnt scope.hub.id and !Cart.empty() elm.bind 'click', (ev)-> ev.preventDefault() - if confirm "Are you sure? This will change your selected Hub and remove any items in you shopping cart." + if confirm "Are you sure? This will change your selected Hub and remove any items in your shopping cart." storage.clearAll() # One day this will have to be moar GRANULAR Navigation.go scope.hub.path