From b913118e0720292289da90bb50b717cc0b2e23ba Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Tue, 25 Oct 2016 15:01:30 +0100 Subject: [PATCH] Save the syntax validation setting in the onboarding view. --- .../web/public/coffee/ide/FeatureOnboardingController.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/public/coffee/ide/FeatureOnboardingController.coffee b/services/web/public/coffee/ide/FeatureOnboardingController.coffee index 2e9faedbae..16ffa23363 100644 --- a/services/web/public/coffee/ide/FeatureOnboardingController.coffee +++ b/services/web/public/coffee/ide/FeatureOnboardingController.coffee @@ -7,11 +7,11 @@ define [ $scope.innerStep = 1 $scope.turnCodeCheckOn = () -> - settings.saveProjectSettings({ syntaxValidation: true }) + settings.saveSettings({ syntaxValidation: true }) navToInnerStep2() $scope.turnCodeCheckOn = () -> - settings.saveProjectSettings({ syntaxValidation: false }) + settings.saveSettings({ syntaxValidation: false }) navToInnerStep2() $scope.dismiss = () ->