From 37fbb07211bccd6c8c0fb099ea66335cc82d0674 Mon Sep 17 00:00:00 2001 From: Cat Sync <catsync@zdh.com> Date: Mon, 10 Aug 2015 10:56:21 -0400 Subject: [PATCH] Added continue_statements, graphics, and parameters to concepts list --- app/locale/en.coffee | 3 +++ app/schemas/schemas.coffee | 3 +++ 2 files changed, 6 insertions(+) diff --git a/app/locale/en.coffee b/app/locale/en.coffee index 32f9a96aa..21487548a 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -1199,12 +1199,15 @@ boolean_logic: "Boolean Logic" break_statements: "Break Statements" classes: "Classes" + continue_statements: "Continue Statements" for_loops: "For Loops" functions: "Functions" + graphics: "Graphics" if_statements: "If Statements" input_handling: "Input Handling" math_operations: "Math Operations" object_literals: "Object Literals" + parameters: "Parameters" strings: "Strings" variables: "Variables" vectors: "Vectors" diff --git a/app/schemas/schemas.coffee b/app/schemas/schemas.coffee index c02c07cdd..c99f83b28 100644 --- a/app/schemas/schemas.coffee +++ b/app/schemas/schemas.coffee @@ -246,12 +246,15 @@ me.concept = me.shortString enum: [ 'boolean_logic' 'break_statements' 'classes' + 'continue_statements' 'for_loops' 'functions' + 'graphics' 'if_statements' 'input_handling' 'math_operations' 'object_literals' + 'parameters' 'strings' 'variables' 'vectors'