Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/projects/WorkboardColumn.js
| Show All 19 Lines | this._pointsContentNode = JX.DOM.find( | ||||
| this._panel, | this._panel, | ||||
| 'span', | 'span', | ||||
| 'column-points-content'); | 'column-points-content'); | ||||
| this._cards = {}; | this._cards = {}; | ||||
| this._headers = {}; | this._headers = {}; | ||||
| this._objects = []; | this._objects = []; | ||||
| this._naturalOrder = []; | this._naturalOrder = []; | ||||
| this._dropEffects = []; | |||||
| }, | }, | ||||
| members: { | members: { | ||||
| _phid: null, | _phid: null, | ||||
| _root: null, | _root: null, | ||||
| _board: null, | _board: null, | ||||
| _cards: null, | _cards: null, | ||||
| _headers: null, | _headers: null, | ||||
| _naturalOrder: null, | _naturalOrder: null, | ||||
| _orderVectors: null, | _orderVectors: null, | ||||
| _panel: null, | _panel: null, | ||||
| _pointsNode: null, | _pointsNode: null, | ||||
| _pointsContentNode: null, | _pointsContentNode: null, | ||||
| _dirty: true, | _dirty: true, | ||||
| _objects: null, | _objects: null, | ||||
| _dropEffects: null, | |||||
| getPHID: function() { | getPHID: function() { | ||||
| return this._phid; | return this._phid; | ||||
| }, | }, | ||||
| getRoot: function() { | getRoot: function() { | ||||
| return this._root; | return this._root; | ||||
| }, | }, | ||||
| Show All 15 Lines | members: { | ||||
| }, | }, | ||||
| setNaturalOrder: function(order) { | setNaturalOrder: function(order) { | ||||
| this._naturalOrder = order; | this._naturalOrder = order; | ||||
| this._orderVectors = null; | this._orderVectors = null; | ||||
| return this; | return this; | ||||
| }, | }, | ||||
| setDropEffects: function(effects) { | |||||
| this._dropEffects = effects; | |||||
| return this; | |||||
| }, | |||||
| getDropEffects: function() { | |||||
| return this._dropEffects; | |||||
| }, | |||||
| getPointsNode: function() { | getPointsNode: function() { | ||||
| return this._pointsNode; | return this._pointsNode; | ||||
| }, | }, | ||||
| getPointsContentNode: function() { | getPointsContentNode: function() { | ||||
| return this._pointsContentNode; | return this._pointsContentNode; | ||||
| }, | }, | ||||
| ▲ Show 20 Lines • Show All 390 Lines • Show Last 20 Lines | |||||