1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-23 15:22:41 +01:00
phorge-phorge/webroot/rsrc/js/application/differential/behavior-show-all-comments.js

19 lines
401 B
JavaScript
Raw Normal View History

2011-02-05 20:06:56 +01:00
/**
* @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();
});
});