UNPKG

raptor

Version:

RaptorJS provides an AMD module loader that works in Node, Rhino and the web browser. It also includes various sub-modules to support building optimized web applications.

16 lines (11 loc) 340 B
define( 'components/renderer/Component1/Component1Widget', function(require) { var Component1Widget = function(config) { Component1Widget.initOrder.push(config.id); }; Component1Widget.prototype = { }; Component1Widget.initOrder = []; return Component1Widget; });