oxjs/source/Ox.UI/js/List/Ox.ListPage.js

17 lines
458 B
JavaScript
Raw Normal View History

2011-07-29 20:48:43 +02:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-11-05 17:46:53 +01:00
'use strict';
2011-05-16 10:24:46 +02:00
/*@
Ox.ListPage <f:Ox.Element> ListPage Object
() -> <f> ListPage Object
(options) -> <f> ListPage Object
(options, self) -> <f> ListPage Object
options <o> Options object
self <o> shared private variable
@*/
2011-04-23 00:03:10 +02:00
Ox.ListPage = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
2011-04-23 00:03:10 +02:00
.addClass('OxPage');
return that;
};