summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/js/load-bootstrap.js
blob: aff280a07be8df1c468352e5b43d9f673fdc0b97 (plain)
1
2
3
4
5
6
7
// Loads a copy of shoreditch's bootstrap if bootstrap is missing
CRM.$(function($) {
  if (!$.isFunction($.fn.dropdown)) {
    CRM.loadScript(CRM.vars.api4.basePath + 'lib/shoreditch/dropdown.js');
    $('head').append('<link type="text/css" rel="stylesheet" href="' + CRM.vars.api4.basePath + 'lib/shoreditch/bootstrap.css" />');
  }
});