AMD pubsub: Difference between revisions
From MoodleDocs
David Mudrak (talk | contribs) m (Text replacement - "<code (.*)>" to "<syntaxhighlight lang="$1">") |
(This page will not be migrated to new devdocs) |
||
Line 1: | Line 1: | ||
{{Template:WillNotMigrate}} | |||
{{Moodle 3.6}} | {{Moodle 3.6}} | ||
Latest revision as of 15:34, 7 February 2025
Warning: This page is no longer in use. The information contained on the page should NOT be seen as relevant or reliable. |
Moodle 3.6
What is this?
A simple module to do event subscription and publishing in JavaScript. It was added to avoid the need to use jQuery and the DOM.
Why would I use it?
Allows modules to communicate with one another indirectly without the need to include jQuery or touch the DOM.
Example
// Module A.
require(['core/pubsub'], function(PubSub) {
PubSub.publish('example-event', someData);
});
// Module B.
require(['core/pubsub'], function(PubSub) {
PubSub.subscribe('example-event', function(someData) {
console.log('Received', someData);
});
});