Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.
John Daniel edited this page Aug 20, 2014 · 2 revisions

The NOVAXML.js functions are reached through a Schedule object.

The object is retrived through new NOVA.Schedule()

To analyse weeks use the function Schedule.prototype.loadWeeks()

Example

    var mySched = new NOVA.Schedule({id:'{{USER ID}}',schoolId:NOVA.SCHOOLS['{{SCHOOL NAME}}']});
    mySched.loadWeeks({weeks:{first:34,last:51}}).then(function(){
        var weeks = mySched.getWeeks('all');
    });

Clone this wiki locally