Skip to content

Commit

Permalink
change const to var for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Bressan authored and Daniel Bressan committed Mar 2, 2017
1 parent 6fdc70a commit 9e54f99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Template.videoFlexTab.onRendered(function() {
Meteor.call('jitsi:updateTimeout', roomId);

timeOut = Meteor.setInterval(() => Meteor.call('jitsi:updateTimeout', roomId), 10*1000);
const newWindow = null;
var newWindow = null;
if (Meteor.isCordova) {
newWindow = window.open((noSsl ? 'http://' : 'https://') + domain + '/' + jitsiRoom, '_system');
closePanel();
Expand Down

0 comments on commit 9e54f99

Please sign in to comment.