Files
cae/public/assets/js/button-tooltip-custom.js
2026-02-06 14:37:54 +00:00

16 lines
431 B
JavaScript

// "use strict";
// var button_tooltip_custom = {
// init: function() {
// $("button").hover(function() {
// var buttontooltiptext = $(this).attr("class");
// $("button").attr("data-original-title", buttontooltiptext);
// });
// // $("button").tooltip();
// $("a").tooltip();
// $("input").tooltip();
// }
// };
// (function($) {
// "use strict";
// button_tooltip_custom.init()
// })(jQuery);