oxjs/demos/fileinput/js/fileinput.js

16 lines
281 B
JavaScript
Raw Normal View History

2012-03-23 16:55:55 +00:00
Ox.load('UI', function() {
//Ox.Theme('modern');
Ox.FileInput({
//maxFiles: 1,
width: 256
})
.css({
position: 'absolute',
left: '16px',
top: '16px'
})
.appendTo(Ox.UI.$body);
});