From 2a8fa33b840d09f947bb46db5917754c61e5588c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Tenorio-Forn=C3=A9s?= Date: Wed, 8 Mar 2017 15:18:57 +0100 Subject: [PATCH] fix typo in index.js Remove an unexpected + sign preceding a simple instruction. --- demo/app/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/app/js/index.js b/demo/app/js/index.js index cd5863c7..8b3f1bb3 100644 --- a/demo/app/js/index.js +++ b/demo/app/js/index.js @@ -93,7 +93,7 @@ $(document).ready(function() { if (err) { $("#communication .error").show(); $("#communication-controls").hide(); -+ $("#status-communication").addClass('status-offline'); + $("#status-communication").addClass('status-offline'); } else { EmbarkJS.Messages.setProvider('whisper'); $("#status-communication").addClass('status-online');