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

src/assetbundles/seomatic/src/js/seomatic-chart.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 13
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
nc 1
dl 0
loc 13
rs 10
c 1
b 0
f 0
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A seomatic-chart.js ➔ $ 0 2 1
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