Using CommentId by queryParam

This commit is contained in:
Belen Curcio
2017-06-29 10:18:40 -03:00
parent 32318567c9
commit 87f8ed401f
+4 -1
View File
@@ -190,7 +190,10 @@ Talk.render = function(el, opts) {
// Compose the query to send down to the Talk API so it knows what to load.
let query = {};
query.comment_id = window.location.hash.slice(1);
let urlParams = new URLSearchParams(window.location.search);
query.comment_id = urlParams.get('commentId');
query.asset_id = opts.asset_id;
query.asset_url = opts.asset_url;