From 32a3d90bd924ceddc3781217ec82cbf3791c3c63 Mon Sep 17 00:00:00 2001 From: Ben Otter Date: Thu, 10 Apr 2014 10:42:42 -0700 Subject: [PATCH 1/2] Added Git Ignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c094bf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +nbproject/ \ No newline at end of file From 4fdb230d7a8edd216eb4af10b50328ec5a713896 Mon Sep 17 00:00:00 2001 From: Ben Otter Date: Thu, 10 Apr 2014 10:44:05 -0700 Subject: [PATCH 2/2] Corrected Semicolon to Colon in Template Misplaced Semicolon causing invalid 'break' function corrected in template. --- template/Template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/Template.js b/template/Template.js index 4a68f32..4a0aa96 100644 --- a/template/Template.js +++ b/template/Template.js @@ -235,7 +235,7 @@ CRunTemplate.prototype = CServices.extend(new CRunExtension(), break; // Dummy action : calls the CND_DUMMY2 condition of this object - case CRunTemplate.ACT_DUMMY2; + case CRunTemplate.ACT_DUMMY2: var string = act.getParamExpString(this.rh, 0); this.generateEvent(CRunTemplate.CND_DUMMY2, string); break;