summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorWENDLING NICOLAS <nicolas.wendling2@etu.unistra.fr>2021-01-26 16:50:43 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 23:17:31 +0200
commitc469d3221ac6c7aff3f79d204dc32ff3572627be (patch)
tree4e5ccff17530ec66752f0751d87057298b3cca80 /js
parent0d5443d6eed1e1ba8ff248f72e940734d470f689 (diff)
🐛 Change to singlequotes - Fix build error
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'js')
-rw-r--r--js/controller/NavigationController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 4ff3d2b7d..2483fbd00 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -156,7 +156,7 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource
};
this.isSharedActive = function () {
- console.log("hey i'm : " + $route.current.$$route.type);
+ console.log('hey i\'m : ' + $route.current.$$route.type);
return $route.current &&
$route.current.$$route.type === FEED_TYPE.SHARED;
};