Merge branch 'feature/cale/cms-master' of github.com:MITx/mitx into feature/cdodge/edit-section-info

This commit is contained in:
Chris Dodge
2012-10-17 13:49:16 -04:00
4 changed files with 670 additions and 5 deletions

View File

@@ -345,10 +345,21 @@ function displayFinishedUpload(xhr) {
if(xhr.status = 200){
markAsLoaded();
}
var resp = JSON.parse(xhr.responseText);
$('.upload-modal .copy-button').attr('href', xhr.getResponseHeader('asset_url'));
$('.upload-modal .progress-fill').html(xhr.responseText);
$('.upload-modal .progress-fill').html(resp.msg);
$('.upload-modal .choose-file-button').html('Load Another File').show();
$('.upload-modal .progress-fill').width('100%');
// see if this id already exists, if so, then user must have updated an existing piece of content
$("tr[data-id='" + resp.url + "']").remove();
var template = $('#new-asset-element').html();
var html = Mustache.to_html(template, resp);
$('table > tbody > tr:first').before(html);
$("tr[data-id='" + resp.url + "'] a.show-xml").toggle(showEmbeddableXML, hideEmbeddableXML);
}
function markAsLoaded() {
@@ -360,7 +371,6 @@ function hideModal(e) {
e.preventDefault();
$('.modal').hide();
$modalCover.hide();
location.reload();
}
function onKeyUp(e) {