Skip to content

Can handle running Khan Academy programs on your computer

Notifications You must be signed in to change notification settings

prolightHub/KaTemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KaTemplate

Can handle running Khan Academy programs on your computer Please refresh again to load extra sounds and images.

Usage:

Inside of index.js:

function main()
{
    // Put your Khan Academy javascript here
}
createProcessing(main);

Or split it up into multiple files and your index.js would now look like this:

function main()
{
    // Put your Khan Academy javascript here
}
createProcessing(main, func1, func2);

func1 and func2 would be like this in other files:

function func1()
{
    // Do something here
}
function func2()
{
    // Do something here too
}

It's important to note that, your functions will get combined (in the order you put them in).

function anonymous()
{
    // Put your Khan Academy javascript here
    // Do something here
    // Do something here too
}

Or really like this:

(function anonymous(
) {
    return function any(processing)
    {
        ...
        with(processing)
        {
            // Put your Khan Academy javascript here
            // Do something here
            // Do something here too
        }
        ...
    };
})

About

Can handle running Khan Academy programs on your computer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages