21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
|
|
window.Class = easejs.Class;
|
|
window.Interface = easejs.Interface;
|
|
|
|
// namespace
|
|
window.rectest = { cases: {} };
|
|
|
|
$( document ).ready( function()
|
|
{
|
|
rectest.RecTest( jQuery, rectest.cases ).init()
|
|
.listCases( $( '#case' ) )
|
|
.displayNotice(
|
|
'Please configure the test using the form below.'
|
|
)
|
|
.bindContinue( $( '#continue' ), function()
|
|
{
|
|
this.hideNotice();
|
|
} )
|
|
;
|
|
} );
|