1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/js/application/differential/behavior-show-all-comments.js
2011-02-05 11:06:56 -08:00

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();
});
});