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

14 lines
336 B
JavaScript

'use strict';
/*@
Ox.ListPage <f:Ox.Element> ListPage Object
([options[, self]]) -> <o> 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;
};