mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
|
Behaviour.register({
|
||
|
'body' : {
|
||
|
onload: function() {
|
||
|
top.getElementById('ImportFile').frameLoaded( document );
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'form input[type=file]' : {
|
||
|
onchange: function() {
|
||
|
this.form.submit();
|
||
|
}
|
||
|
}
|
||
|
});
|