Passed
Push — v3 ( 4358aa...b8a538 )
by Andrew
05:33
created

seomatic-chart.js ➔ $   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 2
rs 10
c 1
b 0
f 0
1
/**
2
 * SEOmatic plugin for Craft CMS 3.x
3
 *
4
 * A turnkey SEO implementation for Craft CMS that is comprehensive, powerful,
5
 * and flexible
6
 *
7
 * @link      https://nystudio107.com
8
 * @copyright Copyright (c) 2017 nystudio107
9
 */
10
11
/**
12
 * @author    nystudio107
13
 * @package   SEOmatic
14
 * @since     3.0.0
15
 */
16
17
// CSS
18
require('../css/seomatic-chart.css');
19
require('billboard.css');
20
21
// Images
22
23
// JavaScript
24
import {bb} from 'billboard.js';
25
26
// Set the window.bb global so we can use it in Twig
27
window.bb = bb;
28
29
$(function () {
30
});
31