Howto:Prototyping new Nasal based Canvas Elements: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
m (cat: Canvas Elements)
 
Line 28: Line 28:
== Related ==
== Related ==
{{Appendix}}
{{Appendix}}
[[Category:Canvas Elements]]

Latest revision as of 15:15, 13 August 2019

This article is a stub. You can help the wiki by expanding it.

Idea

var myNewCanvasElement = {
new: func() {
var m = { parents:[Canvas.Element] };
return m;
},
del: func() {
},

};

Background

Motivation

See also

Related

References