[Comments] Fix opening comment action
This commit is contained in:
parent
511888dc4e
commit
8cc4803b82
|
@ -282,7 +282,12 @@ define([
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
onShowComment: function (id, selected) {
|
onShowComment: function (id, selected) {
|
||||||
var comment = (typeof id == Object) ? id : this.findComment(id);
|
var comment;
|
||||||
|
if (typeof id == 'object') {
|
||||||
|
comment = id;
|
||||||
|
id = comment.get('uid');
|
||||||
|
} else
|
||||||
|
comment = this.findComment(id);
|
||||||
if (comment) {
|
if (comment) {
|
||||||
if (null !== comment.get('quote')) {
|
if (null !== comment.get('quote')) {
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
|
|
Loading…
Reference in a new issue