forked from 0x2620/oxjs
more links, add ParasiticalInheritance, make text selectable
This commit is contained in:
parent
9c2a3cc729
commit
0e45ec0e05
3 changed files with 27 additions and 4 deletions
23
readme/html/ParasiticalInheritance.html
Normal file
23
readme/html/ParasiticalInheritance.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue