Add rough component for viewing comment threads in the change view

Future changes will enhance the aesthetics of this component and insert
it as a tab by the messages list

Bug: Issue 8241
Change-Id: Ia68519ba67aa0fa07d1687e731e1ed82e9979369
This commit is contained in:
Becky Siegel
2018-02-05 10:27:32 -08:00
parent e09bb035f3
commit a7b81d2de5
6 changed files with 280 additions and 2 deletions

View File

@@ -293,11 +293,12 @@ limitations under the License.
* @param {number=} opt_patchNum
* @param {number|string=} opt_basePatchNum The string 'PARENT' can be
* used for none.
* @param {number|string=} opt_lineNum
* @return {string}
*/
getUrlForDiff(change, path, opt_patchNum, opt_basePatchNum) {
getUrlForDiff(change, path, opt_patchNum, opt_basePatchNum, opt_lineNum) {
return this.getUrlForDiffById(change._number, change.project, path,
opt_patchNum, opt_basePatchNum);
opt_patchNum, opt_basePatchNum, opt_lineNum);
},
/**