mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
30 lines
724 B
JavaScript
30 lines
724 B
JavaScript
|
/**
|
||
|
* @provides javelin-behavior-maniphest-transaction-expand
|
||
|
* @requires javelin-behavior
|
||
|
* javelin-dom
|
||
|
* javelin-workflow
|
||
|
* javelin-stratcom
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* When the user clicks "show details" in a Maniphest transaction, replace the
|
||
|
* summary rendering with a detailed rendering.
|
||
|
*/
|
||
|
JX.behavior('maniphest-transaction-expand', function(config) {
|
||
|
|
||
|
JX.Stratcom.listen(
|
||
|
'click',
|
||
|
'maniphest-expand-transaction',
|
||
|
function(e) {
|
||
|
e.kill();
|
||
|
JX.Workflow.newFromLink(e.getTarget(), {})
|
||
|
.setHandler(function(r) {
|
||
|
JX.DOM.setContent(
|
||
|
e.getNode('maniphest-transaction-description'),
|
||
|
JX.$H(r));
|
||
|
})
|
||
|
.start();
|
||
|
});
|
||
|
|
||
|
});
|