Unneeded.

This commit is contained in:
Zixaphir 2013-08-06 22:03:04 -07:00
parent 1c4f4cea24
commit 3384c1b362
3 changed files with 3 additions and 6 deletions

View File

@ -4652,9 +4652,8 @@
name: "soundcloud"
});
$.ajax("//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/" + a.dataset.uid, {
div: div,
onloadend: function() {
return this.div.innerHTML = JSON.parse(this.responseText).html;
return div.innerHTML = JSON.parse(this.responseText).html;
}
}, false);
return div;

View File

@ -4657,9 +4657,8 @@
name: "soundcloud"
});
$.ajax("//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/" + a.dataset.uid, {
div: div,
onloadend: function() {
return this.div.innerHTML = JSON.parse(this.responseText).html;
return div.innerHTML = JSON.parse(this.responseText).html;
}
}, false);
return div;

View File

@ -295,9 +295,8 @@ Linkify =
name: "soundcloud"
$.ajax(
"//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/#{a.dataset.uid}"
div: div
onloadend: ->
@div.innerHTML = JSON.parse(@responseText).html
div.innerHTML = JSON.parse(@responseText).html
false)
div
title: