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

15 lines
336 B
JavaScript
Raw Normal View History

2011-11-05 17:46:53 +01:00
'use strict';
2012-05-21 12:38:18 +02:00
2011-05-16 10:24:46 +02:00
/*@
2012-05-31 12:32:54 +02:00
Ox.ListPage <f> ListPage Object
([options[, self]]) -> <o:Ox.Element> ListPage Object
2011-05-16 10:24:46 +02:00
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;
};