oxjs/demos/fileinput/js/fileinput.js

26 lines
475 B
JavaScript
Raw Normal View History

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