24 lines
485 B
HTML
24 lines
485 B
HTML
|
<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>
|