aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/nms.js
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2016-05-25 23:27:51 +0200
committerKristian Lyngstol <kristian@bohemians.org>2016-05-25 23:27:51 +0200
commit6b888adedb3932df8bd7a4c7bc694cbaacc37f78 (patch)
tree362ff09e9a1549f8619ea6bf32cb347ecc3944c3 /web/js/nms.js
parenteb6b95252acfabf21ac3a30b97b334473c246dff (diff)
front: Remove some old console.log() remnants
KEK
Diffstat (limited to 'web/js/nms.js')
-rw-r--r--web/js/nms.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/js/nms.js b/web/js/nms.js
index 5602357..ca87f5d 100644
--- a/web/js/nms.js
+++ b/web/js/nms.js
@@ -511,6 +511,10 @@ function setNightMode(toggle) {
*
* If you add a configuration setting, use nmsData['config'] as much as
* possible. Avoid adding to this function.
+ *
+ * FIXME: If anyone has a way to remove the deprecation warnings, either by
+ * just silencing them or by moving this off the main thread, then go
+ * ahead and fix it. I don't consider it a real problem, though.
*/
function getInitialConfig() {
$.ajax({
@@ -523,7 +527,6 @@ function getInitialConfig() {
nms._public = true;
document.body.classList.add("gondul-public");
} else {
- console.log("Private");
nms._public = false;
document.body.classList.add("gondul-private");
}