missing semi colon

This commit is contained in:
Jeremy Mahieu 2019-12-20 01:04:21 +01:00 committed by Lorenz Hübschle-Schneider
parent 6dc8fab9dd
commit 47bcd8c518
1 changed files with 1 additions and 1 deletions

View File

@ -701,7 +701,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$scope.parseHash = function() {
//Fill in url parameters, they take precedence over the stored settings, but store them
var params = $location.$$hash.split('&').map(function(val) {return {key: val.split('=')[0], value: val.split('=')[1]}});
var params = $location.$$hash.split('&').map(function(val) { return {key: val.split('=')[0], value: val.split('=')[1]}; });
var hostParam = params.find(function(p) { return p.key === 'host'; });
var portParam = params.find(function(p) { return p.key === 'port'; });
var pathParam = params.find(function(p) { return p.key === 'path'; });