merging changes

This commit is contained in:
rolux 2011-05-11 15:55:15 +02:00
commit e9669315de

View file

@ -3,23 +3,24 @@ Ox.load('UI', {
theme: 'classic' theme: 'classic'
}, function() { }, function() {
Ox.Theme('classic'); Ox.Theme('classic');
Ox.DocPanel({ $.getJSON(Ox.UI.PATH + 'json/Ox.UI.json', function(files) {
files: [ Ox.DocPanel({
'Ox.js', files: Ox.merge([
'Ox.Geo/Ox.Geo.js', 'Ox.js',
'Ox.UI/js/Map/Ox.Map.js', 'Ox.Geo/Ox.Geo.js',
'Ox.UI/js/Core/Ox.Element.js', ], files.filter(function(file) {
'Ox.UI/js/Core/Ox.JQueryElement.js' return Ox.endsWith(file, '.js');
], })),
getModule: function(item) { getModule: function(item) {
var file = item.file.replace(Ox.PATH, ''); var file = item.file.replace(Ox.PATH, '');
return file == 'Ox.js' ? 'Ox' : file.split('/')[0]; return file == 'Ox.js' ? 'Ox' : file.split('/')[0];
}, },
getSection: function(item) { getSection: function(item) {
var file = item.file.replace(Ox.PATH, ''); var file = item.file.replace(Ox.PATH, '');
return item.section || file.split('/')[2]; return item.section || file.split('/')[2];
}, },
path: Ox.PATH path: Ox.PATH
}) })
.appendTo(Ox.UI.$body); .appendTo(Ox.UI.$body);
}); });
});