add Ox.FileInput

This commit is contained in:
rolux 2012-03-23 17:55:55 +01:00
commit 1320fb68aa
6 changed files with 329 additions and 0 deletions

View file

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