From 20aba54d529712584bce2cbb64aa37b4d212eb38 Mon Sep 17 00:00:00 2001 From: Jonathan Melville Date: Fri, 26 Sep 2014 11:09:00 -0400 Subject: [PATCH] Fixes multiple inclusions of _global.scss when compiling. --- scss/foundation/_functions.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/foundation/_functions.scss b/scss/foundation/_functions.scss index 12d31db52..f018ced0e 100644 --- a/scss/foundation/_functions.scss +++ b/scss/foundation/_functions.scss @@ -9,7 +9,7 @@ $rem-base: 16px !default; // We use this to prevent styles from being loaded multiple times for compenents that rely on other components. $modules: () !default; @mixin exports($name) { - @if(not index($modules, $name)) { + @if (index($modules, $name) == false) { $modules: append($modules, $name); @content; } -- 2.47.2