| Index: appengine/chromium_rietveld/new_static/model/issue.js
|
| diff --git a/appengine/chromium_rietveld/new_static/model/issue.js b/appengine/chromium_rietveld/new_static/model/issue.js
|
| index c131d098c7d0c5513a0fc00a1c5e37c67318bf1d..17c343db7f525b3ea09dc38d3ce7aab5b42e99bd 100644
|
| --- a/appengine/chromium_rietveld/new_static/model/issue.js
|
| +++ b/appengine/chromium_rietveld/new_static/model/issue.js
|
| @@ -17,6 +17,7 @@ function Issue(id)
|
| this.owner = null; // User
|
| this.private = false;
|
| this.baseUrl = "";
|
| + this.remoteBranch = "";
|
| this.subject = "";
|
| this.created = ""; // Date
|
| this.patchsets = []; // Array<PatchSet>
|
| @@ -97,6 +98,7 @@ Issue.prototype.parseData = function(data)
|
| if (this.id !== data.issue)
|
| throw new Error("Incorrect issue loaded " + this.id + " != " + data.issue);
|
| this.baseUrl = data.base_url || "";
|
| + this.remoteBranch = data.remote_branch || "";
|
| this.closed = data.closed || false;
|
| this.commit = data.commit || false;
|
| this.created = Date.utc.create(data.created);
|
|
|