1
0
Fork 0
forked from 0x2620/oxjs

more links, add ParasiticalInheritance, make text selectable

This commit is contained in:
j 2012-04-19 20:33:27 +02:00
commit 0e45ec0e05
3 changed files with 27 additions and 4 deletions

View 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>