Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/DiffInline.js
| Show First 20 Lines • Show All 455 Lines • ▼ Show 20 Lines | setLoading: function(loading) { | ||||
| return this; | return this; | ||||
| }, | }, | ||||
| _newRequestData: function(operation, text) { | _newRequestData: function(operation, text) { | ||||
| return { | return { | ||||
| op: operation, | op: operation, | ||||
| id: this._id, | id: this._id, | ||||
| on_right: ((this.getDisplaySide() == 'right') ? 1 : 0), | on_right: ((this.getDisplaySide() == 'right') ? 1 : 0), | ||||
| renderer: this.getChangeset().getRenderer(), | renderer: this.getChangeset().getRendererKey(), | ||||
| number: this.getLineNumber(), | number: this.getLineNumber(), | ||||
| length: this.getLineLength(), | length: this.getLineLength(), | ||||
| is_new: this.isNewFile(), | is_new: this.isNewFile(), | ||||
| changesetID: this.getChangesetID(), | changesetID: this.getChangesetID(), | ||||
| replyToCommentPHID: this.getReplyToCommentPHID() || '', | replyToCommentPHID: this.getReplyToCommentPHID() || '', | ||||
| text: text || '' | text: text || '' | ||||
| }; | }; | ||||
| }, | }, | ||||
| ▲ Show 20 Lines • Show All 286 Lines • Show Last 20 Lines | |||||