BS3 tooltip bug

Tooltip shifts right table cell!

by Stjepan Brbot

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="container">
  <h3>Tooltip Example</h3>
  <table>
  <thead>
    <tr>
      <th data-toggle="tooltip" title="AAA titl">AAA</th>
      <th data-toggle="tooltip" title="BBB title">BBB</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>111</td>
      <td>222</td>
    </tr>
  </tbody>
  </table>
</div>

JavaScript

$(document).ready(function(){
    $('[data-toggle="tooltip"]').tooltip();   
});