-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
46 lines (36 loc) · 1.28 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function () {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());
// Place any jQuery/helper plugins in here.
$(document).ready(function(){
$(".contentsPanel").each(function() {
$(this).prepend('<div class="hidePanel">[hide]</div><div class="showPanel">[show]</div>');
});
$(".hidePanel").click(function(){
$( this ).siblings('ul').hide( 150, function() {
$(this).parent().addClass('minimizedPanel');
});
});
$(".showPanel").click(function(){
$( this ).siblings('ul').show( 150, function() {
$(this).parent().removeClass('minimizedPanel');
});
});
});