Skip to content

Commit

Permalink
improve version info in examples for safari
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Jun 3, 2018
1 parent aac67df commit 22806ed
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
5 changes: 3 additions & 2 deletions examples/fluid.html
Expand Up @@ -42,8 +42,9 @@
}
}, function(){
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

// error handling
Expand Down
5 changes: 3 additions & 2 deletions examples/index.html
Expand Up @@ -45,8 +45,9 @@
}
}, function(){
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

// error handling
Expand Down
5 changes: 3 additions & 2 deletions examples/input.html
Expand Up @@ -137,8 +137,9 @@
}
}, function() {
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

// error handling
Expand Down
5 changes: 3 additions & 2 deletions examples/live.html
Expand Up @@ -50,8 +50,9 @@
}
}, function(){
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

// error handling
Expand Down
5 changes: 3 additions & 2 deletions examples/output.html
Expand Up @@ -68,8 +68,9 @@
}
}, function() {
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

var devices = [];
Expand Down
5 changes: 3 additions & 2 deletions examples/video.html
Expand Up @@ -44,8 +44,9 @@
}
}, function(){
// print version information at startup
videojs.log('Using video.js', videojs.VERSION,
'with videojs-wavesurfer', videojs.getPluginVersion('wavesurfer'));
var msg = 'Using video.js '+ videojs.VERSION +
' with videojs-wavesurfer ' + videojs.getPluginVersion('wavesurfer');
videojs.log(msg);
});

// error handling
Expand Down

0 comments on commit 22806ed

Please sign in to comment.