oxjs/demos/doc/js/doc.js

21 lines
605 B
JavaScript
Raw Normal View History

2011-05-06 17:40:26 +00:00
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);
});
2011-05-06 23:30:32 +00:00
/*
2011-05-06 17:40:26 +00:00
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);
});
});
2011-05-06 23:30:32 +00:00
*/
Ox.print('TEST', Ox.test(source))
2011-05-06 17:40:26 +00:00
});
});