選択できるのは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. }