oxjs/readme/html/ParasiticalInheritance.html

24 lines
485 B
HTML
Raw Normal View History

<h1>Parasitical Inheritance</h1>
<p>This will be a text about Parasitical Inheritance</p>
<p><pre class="code">
Ox.IconList = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.defaults({
...
pageLength: 100,
selected: [],
size: 128,
sort: [],
...
})
.options(options || {});
...
return that;
}</pre>
</p>