GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#2835)
by
unknown
06:01
created

symphony/assets/js/src/symphony.error.js   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 21
rs 9.3142
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A symphony.error.js ➔ $ 0 16 2
1
/**
2
 * @package assets
3
 */
4
5
(function($) {
6
	'use strict';
7
8
	$(function() {
9
10
		// Init collapsibles
11
		var collapsible = $('.frame').symphonyCollapsible({
12
			items: '> li',
13
			handles: '.frame-header',
14
			content: '.content',
15
			save_state: true,
16
			storage: 'symphony.collapsible.error'
17
		});
18
19
		// Hide backtrace and query log by default
20
		if(!('symphony.collapsible.error.0.collapsed' in window.localStorage)) {
21
			collapsible.trigger('collapse.collapsible', [0]);
22
		}
23
	});
24
25
})(window.jQuery);
26