diff --git a/index.html b/index.html index a3055b9..b446f64 100644 --- a/index.html +++ b/index.html @@ -71,7 +71,12 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel <label class="control-label" for="proto">Encryption</label> <input type="checkbox" class="form-control" id="ssl" ng-model="ssl"> <p class="help-block">Check the box if you want to encrypt communication between browser and WeeChat. <strong>Note</strong>: Due to a <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594502">bug</a> encryption will not work in Firefox. You must also first visit the URL https://weechathost:relayport/ to accept the certificate</p> - </div> + </div> + <div class="form-group"> + <label class="control-label" for="port">Lines</label> + <input type="text" class="form-control" id="lines" ng-model="lines" placeholder="40"> + <p class="help-block">Enter number of lines to sync from WeeChat on connect</p> + </div> <button class="btn btn-lg btn-primary" ng-click="connect()">Connect!</button> </form> </div> diff --git a/js/websockets.js b/js/websockets.js index 4101762..85d2e58 100644 --- a/js/websockets.js +++ b/js/websockets.js @@ -429,6 +429,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', $store.bind($scope, "proto", "weechat"); $store.bind($scope, "password", ""); $store.bind($scope, "ssl", false); + $store.bind($scope, "lines", "40"); // TODO checkbox for saving password or not? // $scope.password = ""; @@ -466,8 +467,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', connection.connect($scope.host, $scope.port, $scope.password, $scope.ssl); } $rootScope.getLines = function() { - var count = 20; - connection.getLines(count); + connection.getLines($scope.lines); } /* Function gets called from bufferLineAdded code if user should be notified */