18 lines
541 B
JavaScript
18 lines
541 B
JavaScript
|
Ox.load('UI', {
|
||
|
debug: true,
|
||
|
theme: 'classic'
|
||
|
}, function() {
|
||
|
Ox.Theme('classic');
|
||
|
Ox.get('../../build/Ox.js', function(source) {
|
||
|
var doc = Ox.doc(source);
|
||
|
doc.forEach(function(item) {
|
||
|
Ox.DocPage({doc: item}).appendTo(Ox.UI.$body);
|
||
|
});
|
||
|
Ox.get('../../build/Ox.UI/js/Map/Ox.Map.js', function(source) {
|
||
|
var doc = Ox.doc(source);
|
||
|
doc.forEach(function(item) {
|
||
|
Ox.DocPage({doc: item}).appendTo(Ox.UI.$body);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|