Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 17 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
12 | import $ from "jquery"; |
||
13 | import Popper from 'popper.js'; |
||
14 | |||
15 | /** |
||
16 | * Class Venus |
||
17 | */ |
||
18 | class VenusUi { |
||
19 | constructor() { |
||
20 | window.Popper = Popper.default; |
||
21 | window.$ = window.jQuery = $; |
||
22 | |||
23 | $('[data-toggle="popover"]').popover(); |
||
24 | $('[data-toggle="tooltip"]').tooltip(); |
||
25 | } |
||
26 | } |
||
27 | |||
28 | export default VenusUi; |