36 articles and counting
      
Articles listed under: MooTools

MooTools – Creating a New Class

Here is a template for a new class:
var AjaxModalPanel = new Class({
Implements: [Options, Events],
options: {},
initialize: function(){}
});
Implements: [Options, Events]
The class implements the MooTools Options class since any class that is to be used more than once and has features that could be customized is [...]

READ FULL ARTICLE