Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/DiffChangeset.js
| Show First 20 Lines • Show All 891 Lines • ▼ Show 20 Lines | members: { | ||||
| _onundo: function(e) { | _onundo: function(e) { | ||||
| e.kill(); | e.kill(); | ||||
| this.toggleVisibility(); | this.toggleVisibility(); | ||||
| }, | }, | ||||
| getPathView: function() { | getPathView: function() { | ||||
| if (!this._pathView) { | if (!this._pathView) { | ||||
| this._pathView = new JX.DiffPathView() | var view = new JX.DiffPathView() | ||||
| .setChangeset(this) | .setChangeset(this) | ||||
| .setPath(this._pathParts); | .setPath(this._pathParts); | ||||
| view.getIcon() | |||||
| .setIcon(this.getIcon()); | |||||
| this._pathView = view; | |||||
| } | } | ||||
| return this._pathView; | return this._pathView; | ||||
| }, | }, | ||||
| select: function(scroll) { | select: function(scroll) { | ||||
| this.getChangesetList().selectChangeset(this, scroll); | this.getChangesetList().selectChangeset(this, scroll); | ||||
| return this; | return this; | ||||
| Show All 13 Lines | |||||