oxjs/demos/fileinput/js/fileinput.js
2012-03-23 17:55:55 +01:00

16 lines
No EOL
281 B
JavaScript

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