You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
554 B

  1. const $ = global.$;
  2. // Some Elements need to be included because we have some old pages working with them
  3. // Bootstrap
  4. import"bootstrap-sass/assets/javascripts/bootstrap/tooltip";
  5. import"bootstrap-sass/assets/javascripts/bootstrap/dropdown";
  6. import"bootstrap-sass/assets/javascripts/bootstrap/modal";
  7. // Standard Bootstrap tooltip, z.B. IHK Berlin Rexx ISS
  8. const tooltipHolder = $(".tooltip");
  9. if (typeof tooltipHolder.tooltip === "function") {
  10. tooltipHolder.tooltip("destroy");
  11. tooltipHolder.tooltip({
  12. container: 'body',
  13. html: true
  14. });
  15. }