Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/DiffChangeset.js
| Show All 38 Lines | construct : function(node) { | ||||
| this._showDirectoryURI = data.showDirectoryURI; | this._showDirectoryURI = data.showDirectoryURI; | ||||
| this._pathIconIcon = data.pathIconIcon; | this._pathIconIcon = data.pathIconIcon; | ||||
| this._pathIconColor = data.pathIconColor; | this._pathIconColor = data.pathIconColor; | ||||
| this._isLowImportance = data.isLowImportance; | this._isLowImportance = data.isLowImportance; | ||||
| this._isOwned = data.isOwned; | this._isOwned = data.isOwned; | ||||
| this._isLoading = true; | this._isLoading = true; | ||||
| this._inlines = []; | this._inlines = null; | ||||
| if (data.changesetState) { | if (data.changesetState) { | ||||
| this._loadChangesetState(data.changesetState); | this._loadChangesetState(data.changesetState); | ||||
| } | } | ||||
| JX.enableDispatch(window, 'selectstart'); | JX.enableDispatch(window, 'selectstart'); | ||||
| var onselect = JX.bind(this, this._onClickHeader); | var onselect = JX.bind(this, this._onClickHeader); | ||||
| ▲ Show 20 Lines • Show All 1,022 Lines • Show Last 20 Lines | |||||