Merge pull request #962 from MITx/bug/cas/tom/fakepath

fixed multiple file picker bug; removed 'fakepath' from uploading file n...
This commit is contained in:
Calen Pennington
2012-10-24 13:00:22 -07:00

View File

@@ -428,7 +428,6 @@ function showUploadModal(e) {
e.preventDefault();
$modal = $('.upload-modal').show();
$('.file-input').bind('change', startUpload);
$('.upload-modal .choose-file-button').bind('click', showFileSelectionMenu);
$modalCover.show();
}
@@ -439,7 +438,7 @@ function showFileSelectionMenu(e) {
function startUpload(e) {
$('.upload-modal h1').html('Uploading…');
$('.upload-modal .file-name').html($('.file-input').val());
$('.upload-modal .file-name').html($('.file-input').val().replace('C:\\fakepath\\', ''));
$('.upload-modal .file-chooser').ajaxSubmit({
beforeSend: resetUploadBar,
uploadProgress: showUploadFeedback,