Uploaded From CV. Swandhana Server

This commit is contained in:
Duidev Software House
2025-01-27 08:16:55 +07:00
commit 6b3be42361
15186 changed files with 2328862 additions and 0 deletions

No files matched your search

@@ -0,0 +1,68 @@
/**
* Theme: Highdmin - Responsive Bootstrap 4 Admin Dashboard
* Author: Coderthemes
* Tooltips
*/
(function ($) {
"use strict";
$('#tooltip-hover').tooltipster();
$('#tooltip-events').tooltipster({
trigger: 'click'
});
$('#tooltip-html').tooltipster({
content: $('<img src="assets/images/users/avatar-2.jpg" width="50" height="50" /><p style="text-align:left;"><strong>Soufflé chocolate cake powder.</strong> Applicake lollipop oat cake gingerbread.</p>'),
// setting a same value to minWidth and maxWidth will result in a fixed width
minWidth: 300,
maxWidth: 300,
position: 'right'
});
$('#tooltip-touch').tooltipster({
touchDevices: false
});
$('#tooltip-animation').tooltipster({
animation: 'grow'
});
$('#tooltip-interaction').tooltipster({
contentAsHTML: true,
interactive: true
});
// Multiple tooltips
$('#tooltip-multiple').tooltipster({
animation: 'swing',
content: 'North',
multiple: true,
position: 'top'
});
$('#tooltip-multiple').tooltipster({
content: 'East',
multiple: true,
position: 'right'
});
$('#tooltip-multiple').tooltipster({
animation: 'grow',
content: 'South',
delay: 200,
multiple: true,
position: 'bottom'
});
$('#tooltip-multiple').tooltipster({
animation: 'fall',
content: 'West',
multiple: true,
position: 'left'
});
})(jQuery);