Apply review suggestion by @raccube

Co-authored-by: Dominik M. Kwiatek <6197148+raccube@users.noreply.github.com>
This commit is contained in:
Andreas Nedbal 2020-12-26 18:56:20 +01:00 committed by Andreas Nedbal
parent 9f39661cdd
commit 9d9216d726
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import 'bootstrap';
import $ from 'jquery'; import $ from 'jquery';
/** /**
* This module sets up Bootstraps JavaScript * This module sets up Bootstrap's JavaScript
* *
* Inside of the exported function below, initialize Bootstrap * Inside of the exported function below, initialize Bootstrap
* modules that require explicit initilization, like tooltips * modules that require explicit initilization, like tooltips
@ -12,4 +12,4 @@ export default function (): void {
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();
$('.dropdown-toggle').dropdown(); $('.dropdown-toggle').dropdown();
}); });
} }