aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2013-08-23 04:56:15 +0200
committerSem <sembrestels@riseup.net>2013-08-23 04:56:15 +0200
commitd72bc668b69f865988068c21aab7e781584f2ff7 (patch)
treecdc843a58dd7ff487eb875ccc0f4ba92c1b5e6dd
parent5f2e17c76537a26b0a73ca6a79b38beb55253363 (diff)
downloadelgg-d72bc668b69f865988068c21aab7e781584f2ff7.tar.gz
elgg-d72bc668b69f865988068c21aab7e781584f2ff7.tar.bz2
Updated to Elgg 1.8.16.
-rw-r--r--views/default/js/embed/embed.php15
1 files changed, 13 insertions, 2 deletions
diff --git a/views/default/js/embed/embed.php b/views/default/js/embed/embed.php
index 394240fa4..301ff5a49 100644
--- a/views/default/js/embed/embed.php
+++ b/views/default/js/embed/embed.php
@@ -34,8 +34,7 @@ elgg.embed.init = function() {
// caches the current textarea id
$(".embed-control").live('click', function() {
- var textAreaId = /embed-control-(\S)+/.exec($(this).attr('class'))[0];
- elgg.embed.textAreaId = textAreaId.substr("embed-control-".length);
+ elgg.embed.textAreaId = /embed-control-(\S)+/.exec($(this).attr('class'))[1];
});
// special pagination helper for lightbox
@@ -115,6 +114,18 @@ elgg.embed.submit = function(event) {
$('.embed-wrapper .elgg-form-file-upload').show();
}
}
+
+ // ie 7 and 8 have a null response because of the use of an iFrame
+ // so just show the list after upload.
+ // http://jquery.malsup.com/form/#file-upload claims you can wrap JSON
+ // in a textarea, but a quick test didn't work, and that is fairly
+ // intrusive to the rest of the ajax system.
+ else if (response === undefined && $.browser.msie) {
+ var forward = $('input[name=embed_forward]').val();
+ var url = elgg.normalize_url('embed/tab/' + forward);
+ url = elgg.embed.addContainerGUID(url);
+ $('.embed-wrapper').parent().load(url);
+ }
},
error : function(xhr, status) {
// @todo nothing for now