* VRFS-1901 - hook up wired pth

This commit is contained in:
Seth Call 2014-07-09 10:18:29 -05:00
parent 93a2151337
commit 0000932789
1 changed files with 5 additions and 1 deletions

View File

@ -403,7 +403,8 @@
if (isWireless == -1) {
logger.warn("unable to determine if the user is on wireless or not for network test. skipping prompt.")
}
else if (isWireless == 1) {
if (isWireless == 1) {
context.JK.Banner.showAlert({buttons: [
{name: 'CANCEL', click: function () {
scoring = false;
@ -420,6 +421,9 @@
"We recommend using a wired Ethernet connection from your computer to your router. " +
"A WiFi connection is likely to cause significant issues in both latency and audio quality.</p>"})
}
else {
attemptTestPass();
}
})
.fail(function () {
context.JK.Banner.showAlert("Network Test Failure", "Unable to determine internet connection type.")