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

15 lines
336 B
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2012-05-21 10:38:18 +00:00
2011-05-16 08:24:46 +00:00
/*@
Ox.ListPage <f:Ox.Element> ListPage Object
2012-05-22 13:14:40 +00:00
([options[, self]]) -> <o> ListPage Object
2011-05-16 08:24:46 +00:00
options <o> Options object
self <o> shared private variable
@*/
2011-04-22 22:03:10 +00:00
Ox.ListPage = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
2011-04-22 22:03:10 +00:00
.addClass('OxPage');
return that;
};