UI Component library
Skip to main content
{{#js}}
require(
[
'jquery',
'theme_boost/toast',
],
function(
$,
Toast
) {
var root = $('#toasttest');
root.toast('show');
});
{{/js}}
Moodle JavaScript
Running AMD modules
When using this (shortcode) syntax you can showcase your HTML and add some RequireJS style Javascript that will call core AMD modules.
In order for this to work you need to use the JavaScript syntax used in core Mustache templates. See the {{js}}
tags in this example below:
Bootstrap
11 mins ago
Hello, world! This is a toast message.
<div id="toasttest" role="alert" aria-live="assertive" aria-atomic="true" class="toast" data-autohide="false">
<div class="toast-header">
<img src="http://placekitten.com/50/50" class="rounded mr-2" alt="PlaceKitten">
<strong class="mr-auto">Bootstrap</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div>
{{#js}}
require(
[
'jquery',
'theme_boost/toast',
],
function(
$,
Toast
) {
var root = $('#toasttest');
root.toast('show');
});
{{/js}}