From c118234bbf1bb009f4ae4fbb476a994b9ed0b4f3 Mon Sep 17 00:00:00 2001 From: Pete Richards Date: Wed, 19 Aug 2015 13:55:02 -0700 Subject: [PATCH] [Style] Brace after if criteria --- platform/core/src/models/RootModelProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/core/src/models/RootModelProvider.js b/platform/core/src/models/RootModelProvider.js index d3f64c5e36..f60d359af8 100644 --- a/platform/core/src/models/RootModelProvider.js +++ b/platform/core/src/models/RootModelProvider.js @@ -44,7 +44,7 @@ define( function RootModelProvider(roots, $q, $log) { // Pull out identifiers to used as ROOT's, while setting locations. var ids = roots.map(function (root) { - if (!root.model) root.model = {}; + if (!root.model) { root.model = {}; } root.model.location = 'ROOT'; return root.id; }),