diff --git a/index.html b/index.html index f49dd12..61ca137 100644 --- a/index.html +++ b/index.html @@ -112,7 +112,7 @@ - + @@ -276,8 +276,8 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel - Fetch more lines - Fetching more lines... + Fetch more lines + Fetching more lines @@ -310,7 +310,7 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel

Connection to WeeChat lost

- Reconnecting... Click to try to reconnect now + Reconnecting... Click to try to reconnect now
diff --git a/js/glowingbear.js b/js/glowingbear.js index 9c2caed..33eeed9 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -264,8 +264,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', models.reinitialize(); $rootScope.$emit('notificationChanged'); $scope.connectbutton = 'Connect'; + $scope.connectbuttonicon = 'glyphicon-chevron-right'; }); $scope.connectbutton = 'Connect'; + $scope.connectbuttonicon = 'glyphicon-chevron-right'; $scope.getBuffers = models.getBuffers.bind(models); @@ -582,11 +584,13 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', $rootScope.securityError = false; $rootScope.errorMessage = false; $rootScope.bufferBottom = true; - $scope.connectbutton = 'Connecting ...'; + $scope.connectbutton = 'Connecting'; + $scope.connectbuttonicon = 'glyphicon-refresh glyphicon-spin'; connection.connect(settings.host, settings.port, $scope.password, settings.ssl); }; $scope.disconnect = function() { $scope.connectbutton = 'Connect'; + $scope.connectbuttonicon = 'glyphicon-chevron-right'; connection.disconnect(); }; $scope.reconnect = function() { @@ -788,7 +792,8 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', $rootScope.securityError = false; $rootScope.errorMessage = false; $rootScope.bufferBottom = true; - $scope.connectbutton = 'Connecting ...'; + $scope.connectbutton = 'Connecting'; + $scope.connectbuttonicon = 'glyphicon-chevron-right'; connection.connect(host, port, password, ssl); } };