mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
18 lines
401 B
JavaScript
18 lines
401 B
JavaScript
/**
|
|
* @provides javelin-behavior-differential-show-all-comments
|
|
* @requires javelin-lib-dev
|
|
*/
|
|
|
|
JX.behavior('differential-show-all-comments', function(config) {
|
|
|
|
JX.Stratcom.listen(
|
|
'click',
|
|
'differential-show-all-comments',
|
|
function(e) {
|
|
JX.DOM.setContent(
|
|
e.getNode('differential-all-comments-container'),
|
|
JX.HTML(config.markup));
|
|
e.kill();
|
|
});
|
|
|
|
});
|