change video border width

This commit is contained in:
Connor Turland 2016-02-29 17:05:36 +13:00
parent d50923b6bd
commit 4e92d4c2c5

View file

@ -2050,7 +2050,7 @@ Metamaps.Realtime = {
left: left + 'px' left: left + 'px'
}); });
v.$container.find('.video-cutoff').css({ v.$container.find('.video-cutoff').css({
border: '5px solid ' + self.mappersOnMap[id].color border: '4px solid ' + self.mappersOnMap[id].color
}); });
self.videosInPosition += 1; self.videosInPosition += 1;
}, },
@ -2118,7 +2118,7 @@ Metamaps.Realtime = {
self: true self: true
}; };
self.localVideo.view.$container.find('.video-cutoff').css({ self.localVideo.view.$container.find('.video-cutoff').css({
border: '5px solid ' + self.activeMapper.color border: '4px solid ' + self.activeMapper.color
}); });
self.room.chat.addParticipant(self.activeMapper); self.room.chat.addParticipant(self.activeMapper);
}, },