mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-02-20 21:50:39 +03:00
33 lines
583 B
JavaScript
Executable File
33 lines
583 B
JavaScript
Executable File
$(function () {
|
|
'use strict'
|
|
|
|
$('.tooltip-right').tooltip({
|
|
placement: 'right',
|
|
viewport: {
|
|
selector: 'body',
|
|
padding: 2
|
|
}
|
|
})
|
|
$('.tooltip-bottom').tooltip({
|
|
placement: 'bottom',
|
|
viewport: {
|
|
selector: 'body',
|
|
padding: 2
|
|
}
|
|
})
|
|
$('.tooltip-viewport-right').tooltip({
|
|
placement: 'right',
|
|
viewport: {
|
|
selector: '.container-viewport',
|
|
padding: 2
|
|
}
|
|
})
|
|
$('.tooltip-viewport-bottom').tooltip({
|
|
placement: 'bottom',
|
|
viewport: {
|
|
selector: '.container-viewport',
|
|
padding: 2
|
|
}
|
|
})
|
|
})
|