From 396466251de1981640e0427c95d56f0eacd8970d Mon Sep 17 00:00:00 2001 From: Lujun Weng Date: Thu, 12 May 2016 16:47:36 +0800 Subject: [PATCH] do not support "pure JS" mode --- articles/_posts/2011-12-04-jsQuickStart.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/articles/_posts/2011-12-04-jsQuickStart.html b/articles/_posts/2011-12-04-jsQuickStart.html index 58a5704..a496475 100644 --- a/articles/_posts/2011-12-04-jsQuickStart.html +++ b/articles/_posts/2011-12-04-jsQuickStart.html @@ -207,6 +207,10 @@

Writing JavaScript-only Processing.js code

+

+ Since 1.4.9, this is not supported any more.
+ To write Javascript code, you can use 1.4.8 or other libraries like p5js.

+

The previous method produced JavaScript code from Processing, but you can also write JavaScript on its own. The Processing.js parser turns Processing code into a JavaScript @@ -260,7 +264,7 @@

or objects are accessible as properties of this object.

Once that function is complete, pass it, along with a reference to a canvas, to - the Processing constructor (remember to use new).

+ the Processing constructor (remember to use new).

Writing Documents that Combine Processing and JavaScript Code