Unneeded.
This commit is contained in:
parent
1c4f4cea24
commit
3384c1b362
@ -4652,9 +4652,8 @@
|
|||||||
name: "soundcloud"
|
name: "soundcloud"
|
||||||
});
|
});
|
||||||
$.ajax("//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/" + a.dataset.uid, {
|
$.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() {
|
onloadend: function() {
|
||||||
return this.div.innerHTML = JSON.parse(this.responseText).html;
|
return div.innerHTML = JSON.parse(this.responseText).html;
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
return div;
|
return div;
|
||||||
|
|||||||
@ -4657,9 +4657,8 @@
|
|||||||
name: "soundcloud"
|
name: "soundcloud"
|
||||||
});
|
});
|
||||||
$.ajax("//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/" + a.dataset.uid, {
|
$.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() {
|
onloadend: function() {
|
||||||
return this.div.innerHTML = JSON.parse(this.responseText).html;
|
return div.innerHTML = JSON.parse(this.responseText).html;
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
return div;
|
return div;
|
||||||
|
|||||||
@ -295,9 +295,8 @@ Linkify =
|
|||||||
name: "soundcloud"
|
name: "soundcloud"
|
||||||
$.ajax(
|
$.ajax(
|
||||||
"//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/#{a.dataset.uid}"
|
"//soundcloud.com/oembed?show_artwork=false&&maxwidth=500px&show_comments=false&format=json&url=https://www.soundcloud.com/#{a.dataset.uid}"
|
||||||
div: div
|
|
||||||
onloadend: ->
|
onloadend: ->
|
||||||
@div.innerHTML = JSON.parse(@responseText).html
|
div.innerHTML = JSON.parse(@responseText).html
|
||||||
false)
|
false)
|
||||||
div
|
div
|
||||||
title:
|
title:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user