Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/DiffChangeset.js
| Show All 28 Lines | construct : function(node) { | ||||
| this._rightID = data.right; | this._rightID = data.right; | ||||
| this._displayPath = JX.$H(data.displayPath); | this._displayPath = JX.$H(data.displayPath); | ||||
| this._pathParts = data.pathParts; | this._pathParts = data.pathParts; | ||||
| this._icon = data.icon; | this._icon = data.icon; | ||||
| this._editorURI = data.editorURI; | this._editorURI = data.editorURI; | ||||
| this._editorConfigureURI = data.editorConfigureURI; | this._editorConfigureURI = data.editorConfigureURI; | ||||
| this._showPathURI = data.showPathURI; | |||||
| 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 = []; | ||||
| Show All 26 Lines | members: { | ||||
| _undoNode: null, | _undoNode: null, | ||||
| _displayPath: null, | _displayPath: null, | ||||
| _changesetList: null, | _changesetList: null, | ||||
| _icon: null, | _icon: null, | ||||
| _editorURI: null, | _editorURI: null, | ||||
| _editorConfigureURI: null, | _editorConfigureURI: null, | ||||
| _showPathURI: null, | |||||
| _showDirectoryURI: null, | |||||
| _pathView: null, | _pathView: null, | ||||
| _pathIconIcon: null, | _pathIconIcon: null, | ||||
| _pathIconColor: null, | _pathIconColor: null, | ||||
| _isLowImportance: null, | _isLowImportance: null, | ||||
| _isOwned: null, | _isOwned: null, | ||||
| _isHidden: null, | _isHidden: null, | ||||
| getEditorURI: function() { | getEditorURI: function() { | ||||
| return this._editorURI; | return this._editorURI; | ||||
| }, | }, | ||||
| getEditorConfigureURI: function() { | getEditorConfigureURI: function() { | ||||
| return this._editorConfigureURI; | return this._editorConfigureURI; | ||||
| }, | }, | ||||
| getShowPathURI: function() { | |||||
| return this._showPathURI; | |||||
| }, | |||||
| getShowDirectoryURI: function() { | |||||
| return this._showDirectoryURI; | |||||
| }, | |||||
| getLeftChangesetID: function() { | getLeftChangesetID: function() { | ||||
| return this._leftID; | return this._leftID; | ||||
| }, | }, | ||||
| getRightChangesetID: function() { | getRightChangesetID: function() { | ||||
| return this._rightID; | return this._rightID; | ||||
| }, | }, | ||||
| ▲ Show 20 Lines • Show All 866 Lines • Show Last 20 Lines | |||||