Files
Chamilo/plugin/h5p/cache-h5p/launch/source-markthewords/H5P.JoubelUI-1.3/js/joubel-throbber.js
2025-08-14 22:39:38 +02:00

20 lines
312 B
JavaScript

var H5P = H5P || {};
H5P.JoubelThrobber = (function ($) {
/**
* Creates a new tip
*/
function JoubelThrobber() {
// h5p-throbber css is described in core
var $throbber = $('<div/>', {
'class': 'h5p-throbber'
});
return $throbber;
}
return JoubelThrobber;
}(H5P.jQuery));