您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

17 行
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. }