Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/projects/WorkboardHeaderTemplate.js
| /** | /** | ||||
| * @provides javelin-workboard-header-template | * @provides javelin-workboard-header-template | ||||
| * @requires javelin-install | * @requires javelin-install | ||||
| * @javelin | * @javelin | ||||
| */ | */ | ||||
| JX.install('WorkboardHeaderTemplate', { | JX.install('WorkboardHeaderTemplate', { | ||||
| construct: function(header_key) { | construct: function(header_key) { | ||||
| this._headerKey = header_key; | this._headerKey = header_key; | ||||
| }, | }, | ||||
| properties: { | properties: { | ||||
| template: null, | template: null, | ||||
| order: null, | order: null, | ||||
| vector: null | vector: null, | ||||
| editProperties: null | |||||
| }, | }, | ||||
| members: { | members: { | ||||
| _headerKey: null, | _headerKey: null, | ||||
| getHeaderKey: function() { | getHeaderKey: function() { | ||||
| return this._headerKey; | return this._headerKey; | ||||
| } | } | ||||
| } | } | ||||
| }); | }); | ||||