mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 18:22:41 +01:00
28 lines
378 B
JavaScript
28 lines
378 B
JavaScript
|
/**
|
||
|
* @provides javelin-workboard-order-template
|
||
|
* @requires javelin-install
|
||
|
* @javelin
|
||
|
*/
|
||
|
|
||
|
JX.install('WorkboardOrderTemplate', {
|
||
|
|
||
|
construct: function(order) {
|
||
|
this._orderKey = order;
|
||
|
},
|
||
|
|
||
|
properties: {
|
||
|
hasHeaders: false,
|
||
|
canReorder: false
|
||
|
},
|
||
|
|
||
|
members: {
|
||
|
_orderKey: null,
|
||
|
|
||
|
getOrderKey: function() {
|
||
|
return this._orderKey;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
});
|