reader.js
1.16 KB
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
/* global, layout, slickgrid, Cookies */
layout.content_height = function() {
"use strict";
return $(window).height() - $('#header').height() - 5;
};
layout.grid_height = function() {
"use strict";
return $('#left').innerHeight() - parseInt($('#content').css('padding-top'), 10) + 5;
};
layout.adjust_tabs = function() {
"use strict";
var right = $('#right'), content = $('#content');
right.height(content.height() + 5);
right.outerWidth(
content.width() - $('#left').outerWidth() - $('.vsplitbar').width());
};
layout.left_width = 340;
$(function() {
"use strict";
var splash_hidden = Cookies.get('splash');
var splash_overlay = $('#splash-overlay');
if (splash_hidden) {
// przedłużamy
Cookies.set('splash', 'hidden', {expires: 365});
} else {
splash_overlay.show();
}
splash_overlay.add('#splash-button').click(function() {
splash_overlay.hide();
Cookies.set('splash', 'hidden', {expires: 365});
});
$('#splash').click(function(event) {
event.stopPropagation();
});
$('.show-splash').click(function() {
splash_overlay.show();
});
});