diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js index 5bece6afc9..5f24b23646 100644 --- a/core/js/sharedialogshareelistview.js +++ b/core/js/sharedialogshareelistview.js @@ -305,7 +305,7 @@ $li.find('.popovermenu').replaceWith(this.popoverMenuTemplate(sharee)); var $edit = $li.parent().find('#canEdit-' + this.cid + '-' + sharee.shareWith); - if($edit.length == 1) { + if($edit.length === 1) { $edit.prop('checked', sharee.hasEditPermission); } } @@ -338,10 +338,10 @@ if (!this._template) { this._template = Handlebars.compile(TEMPLATE); } - var sharees = data['sharees']; + var sharees = data.sharees; if(_.isArray(sharees)) { for (var i = 0; i < sharees.length; i++) { - data['sharees'][i]['popoverMenu'] = this.popoverMenuTemplate(sharees[i]); + data.sharees[i].popoverMenu = this.popoverMenuTemplate(sharees[i]); } } return this._template(data); diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js index 4a2f8f8bc8..4a82630b96 100644 --- a/core/js/shareitemmodel.js +++ b/core/js/shareitemmodel.js @@ -404,7 +404,7 @@ } for(var i = 0; i < shares.length; i++) { var shareWith = shares[i]; - if(shareWith['id'] == shareId) { + if(shareWith.id === shareId) { return i; } }