oxjs/source/Ox.UI/js/List/Ox.ListPage.js
2012-05-21 12:38:18 +02:00

16 lines
418 B
JavaScript

'use strict';
/*@
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
@*/
Ox.ListPage = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.addClass('OxPage');
return that;
};