__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/**
* Utility that makes it possible to hide fields when a checkbox is unchecked
*/
(function ($) {
function setupHiding() {
var $toggler = $(this);
// Getting the field which should be hidden:
var $subject = $($toggler.data('h5p-visibility-subject-selector'));
var toggle = function () {
$subject.toggle($toggler.is(':checked'));
};
$toggler.change(toggle);
toggle();
}
function setupRevealing() {
var $button = $(this);
// Getting the field which should have the value:
var $input = $('#' + $button.data('control'));
if (!$input.data('value')) {
$button.remove();
return;
}
// Setup button action
var revealed = false;
var text = $button.html();
$button.click(function () {
if (revealed) {
$input.val('');
$button.html(text);
revealed = false;
}
else {
$input.val($input.data('value'));
$button.html($button.data('hide'));
revealed = true;
}
});
}
$(document).ready(function () {
// Get the checkboxes making other fields being hidden:
$('.h5p-visibility-toggler').each(setupHiding);
// Get the buttons making other fields have hidden values:
$('.h5p-reveal-value').each(setupRevealing);
});
})(H5P.jQuery);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| settings | Folder | 0777 |
|
|
| h5p-action-bar.js | File | 2.87 KB | 0777 |
|
| h5p-confirmation-dialog.js | File | 12.21 KB | 0777 |
|
| h5p-content-type.js | File | 1.26 KB | 0777 |
|
| h5p-content-upgrade-process.js | File | 9.37 KB | 0777 |
|
| h5p-content-upgrade-worker.js | File | 1.47 KB | 0777 |
|
| h5p-content-upgrade.js | File | 11.29 KB | 0777 |
|
| h5p-data-view.js | File | 11.95 KB | 0777 |
|
| h5p-display-options.js | File | 1.28 KB | 0777 |
|
| h5p-embed.js | File | 1.93 KB | 0777 |
|
| h5p-event-dispatcher.js | File | 6.29 KB | 0777 |
|
| h5p-hub-registration.js | File | 161.72 KB | 0777 |
|
| h5p-hub-sharing.js | File | 235.33 KB | 0777 |
|
| h5p-library-details.js | File | 10.7 KB | 0777 |
|
| h5p-library-list.js | File | 4.22 KB | 0777 |
|
| h5p-resizer.js | File | 3.57 KB | 0777 |
|
| h5p-tooltip.js | File | 6.98 KB | 0777 |
|
| h5p-utils.js | File | 12.51 KB | 0777 |
|
| h5p-version.js | File | 926 B | 0777 |
|
| h5p-x-api-event.js | File | 8.55 KB | 0777 |
|
| h5p-x-api.js | File | 3.64 KB | 0777 |
|
| h5p.js | File | 87.13 KB | 0777 |
|
| jquery.js | File | 88.08 KB | 0777 |
|
| request-queue.js | File | 11.41 KB | 0777 |
|