Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/DiffChangeset.js
| Show All 29 Lines | construct : function(node) { | ||||
| this._treeNodeID = data.treeNodeID; | this._treeNodeID = data.treeNodeID; | ||||
| this._leftID = data.left; | this._leftID = data.left; | ||||
| this._rightID = data.right; | this._rightID = data.right; | ||||
| this._displayPath = JX.$H(data.displayPath); | this._displayPath = JX.$H(data.displayPath); | ||||
| this._icon = data.icon; | this._icon = data.icon; | ||||
| this._editorURI = data.editorURI; | |||||
| this._editorConfigureURI = data.editorConfigureURI; | |||||
| this._inlines = []; | this._inlines = []; | ||||
| }, | }, | ||||
| members: { | members: { | ||||
| _node: null, | _node: null, | ||||
| _loaded: false, | _loaded: false, | ||||
| _sequence: 0, | _sequence: 0, | ||||
| _stabilize: false, | _stabilize: false, | ||||
| Show All 14 Lines | members: { | ||||
| _undoNode: null, | _undoNode: null, | ||||
| _displayPath: null, | _displayPath: null, | ||||
| _changesetList: null, | _changesetList: null, | ||||
| _icon: null, | _icon: null, | ||||
| _treeNodeID: null, | _treeNodeID: null, | ||||
| _editorURI: null, | |||||
| _editorConfigureURI: null, | |||||
| getEditorURI: function() { | |||||
| return this._editorURI; | |||||
| }, | |||||
| getEditorConfigureURI: function() { | |||||
| return this._editorConfigureURI; | |||||
| }, | |||||
| 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 824 Lines • Show Last 20 Lines | |||||