X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fstatic%2Fjs%2Fmanifold.js;fp=manifold%2Fstatic%2Fjs%2Fmanifold.js;h=dc72826483af578331ba7fbe9cb52f5f85e2f5f4;hb=2c59023275130fa32c3a215df0c192b750aa190f;hp=58f2848525836dcad7d777761c3f483cf3470621;hpb=69482802ee8c2bef1323ba7b95ba5e629d11fa91;p=myslice.git diff --git a/manifold/static/js/manifold.js b/manifold/static/js/manifold.js index 58f28485..dc728264 100644 --- a/manifold/static/js/manifold.js +++ b/manifold/static/js/manifold.js @@ -780,10 +780,10 @@ var manifold = { $.each(channels, function(i, channel) { if (value === undefined) { if (manifold.publish_result_debug) messages.debug("triggering [no value] on channel="+channel+" and event_type="+event_type); - $('.plugin').trigger(channel, [event_type]); + $('.pubsub').trigger(channel, [event_type]); } else { if (manifold.publish_result_debug) messages.debug("triggering [value="+value+"] on channel="+channel+" and event_type="+event_type); - $('.plugin').trigger(channel, [event_type, value]); + $('.pubsub').trigger(channel, [event_type, value]); } }); },