comparison ape.js @ 421:928fb9adae81 Dev_main

MUSHRA: Checks enabled. MUSHRA & APE: Warning if check not supported. Core: checkMoved and checkPlayed now in interface and available to all interfaces.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Thu, 17 Dec 2015 17:09:40 +0000
parents 418bfb7d18ed
children 0d3376c11145
comparison
equal deleted inserted replaced
420:cbd4d1ea429a 421:928fb9adae81
651 case 'scalerange': 651 case 'scalerange':
652 // Check the scale is used to its full width outlined by the node 652 // Check the scale is used to its full width outlined by the node
653 var checkState = interfaceContext.checkScaleRange(); 653 var checkState = interfaceContext.checkScaleRange();
654 if (checkState == false) {canContinue = false;} 654 if (checkState == false) {canContinue = false;}
655 break; 655 break;
656 default:
657 console.log("WARNING - Check option "+checks[i].check+" is not supported on this interface");
658 break;
656 } 659 }
657 660
658 } 661 }
659 if (!canContinue) {break;} 662 if (!canContinue) {break;}
660 } 663 }