Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/projects/WorkboardCardTemplate.js
| Show All 22 Lines | members: { | ||||
| _html: null, | _html: null, | ||||
| _vectors: null, | _vectors: null, | ||||
| _headerKeys: null, | _headerKeys: null, | ||||
| getPHID: function() { | getPHID: function() { | ||||
| return this._phid; | return this._phid; | ||||
| }, | }, | ||||
| getVersion: function() { | |||||
| // TODO: For now, just return a constant version number. | |||||
| return 1; | |||||
| }, | |||||
| setNodeHTMLTemplate: function(html) { | setNodeHTMLTemplate: function(html) { | ||||
| this._html = html; | this._html = html; | ||||
| return this; | return this; | ||||
| }, | }, | ||||
| setSortVector: function(order, vector) { | setSortVector: function(order, vector) { | ||||
| this._vectors[order] = vector; | this._vectors[order] = vector; | ||||
| return this; | return this; | ||||
| Show All 26 Lines | |||||