Introduce plugin module mechanism

See the readme for details
This commit is contained in:
Jeremy Ruston 2012-04-30 12:23:03 +01:00
parent e9e211e51d
commit d93bbbbe7b
101 changed files with 14449 additions and 0 deletions

View file

@ -0,0 +1,13 @@
title: SampleJavaScriptWithError
type: application/javascript
/*
This is an example JavaScript file
*/
function myFunction(param) {
if(=) { // An error
param = param/17;
}
return param * Math.PI; // Perform a calculation
}