repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
button to generate plot pheno from plants
[sgn.git]
/
js
/
solGS
/
fileUpload.js
blob
e8130d0fb63b5575387604bf246475d57f6a6d5e
1
2
3
jQuery(function () {
4
var url = '/solgs/upload/prediction/genotypes';
5
jQuery('#fileupload').fileupload({
6
url: url,
7
dataType: 'json',
8
done: function (e, data) {
9
jQuery.each(data.result.files, function (index, file) {
10
jQuery('<p/>').text(file.name).appendTo(document.body);
11
});
12
}
13
});
14
});
15
16
17
18
19
20
21
22
23
24
25
26
27
28