From f374bebc4e5d768c3047376c0cbb01bdadcb7a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Wed, 28 May 2014 20:03:17 +0100 Subject: [PATCH] Turn notimestamp into a positive setting (showtimestamp) --- index.html | 6 +++--- js/glowingbear.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 7a093e0..ae19a80 100644 --- a/index.html +++ b/index.html @@ -231,7 +231,7 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel - +
@@ -290,8 +290,8 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel
diff --git a/js/glowingbear.js b/js/glowingbear.js index 79bf521..4e58b83 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -786,7 +786,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', // We use 968 px as the cutoff, which should match the value in glowingbear.css var nonicklist = false; var noembed = false; - var notimestamp = false; + var showtimestamp = true; $rootScope.wasMobileUi = false; @@ -810,8 +810,8 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', $store.bind($scope, "orderbyserver", false); // Save setting for updating favicon $store.bind($scope, "useFavico", true); - // Save setting for notimestamp - $store.bind($scope, "notimestamp", notimestamp); + // Save setting for showtimestamp + $store.bind($scope, "showtimestamp", showtimestamp); // Save setting for playing sound on notification $store.bind($scope, "soundnotification", false);