dev/core#237 : Hide Drupal8 Administer Menu bar on CiviCRM pages
[civicrm-core.git] / js / crm.drupal8.js
CommitLineData
7eed4524 1// http://civicrm.org/licensing
2CRM.$(function($) {
3 // d8 Hack to hide title when it should be (CRM-19960)
4 $(document).ready(function() {
5 var pageTitle = $('.page-title');
6 if ('<span id="crm-remove-title" style="display:none">CiviCRM</span>' == pageTitle.text()) {
7 pageTitle.hide();
8 }
9
10 $('#civicrm-menu').css({position: "fixed", top: "0px", height: "29px"});
11
12 $('#toolbar-bar').hide();
13 });
14});