rectest/scripts/main.js

21 lines
451 B
JavaScript
Raw Normal View History

2012-03-03 12:06:40 -05:00
window.Class = easejs.Class;
window.Interface = easejs.Interface;
2012-03-03 12:06:40 -05:00
// namespace
window.rectest = { cases: {} };
2012-03-03 12:06:40 -05:00
$( 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();
} )
;
2012-03-03 12:06:40 -05:00
} );