2 'Przekaż 1% żeby ukryć ten baner.',
3 'Jak dobrze wydać 1% swojego podatku? <strong>Poradnik dla opornych</strong>.',
4 'Wiadomość systemowa: wystąpił błąd brak funduszy. Wykonaj procedurę 1%.',
5 '<strong>FREE!</strong> Wygraj darmowe lektury!',
6 'Confidential business offer. Not scam! 1% for you.',
7 'Biblioteka Wolne Lektury wymaga aktualizacji. Kliknij dalej.',
8 '1000 lektur. <strong>1 procent</strong>.',
9 '1% dla biblioteki lektur szkolnych. 1% dla Twojej biblioteki.',
10 '1% na lektury szkolne.',
11 '1% dla wolności lektur szkolnych.',
12 'Podaruj Jeden Procent na rzecz szkolnej biblioteki internetowej.',
13 '1% podatku dla biblioteki szkolnej Wolne Lektury.',
14 '1% na rzecz darmowego dostępu do szkolnych lektur.',
15 'Żeby czytać teksty a nie skany. Przekaż 1%.',
16 'Czytaj teksty a nie skany. Przekaż 1%',
17 'Motyw artysty w literaturze - 47 cytatów. Pomóż znaleźć następne.',
18 'Twój 1% uwolni więcej lektur.',
19 'Ponad 400 motywów, blisko 10 000 000 cytatów. Pomóż znaleźć następne. Przekaż swój 1%.',
20 'Twój 1% uwolni lektury.',
21 'Rozlicz swój PIT z Wolnymi Lekturami. Skorzystaj z darmowego programu do rozliczania podatków.',
22 'Lektury 2010: Pan Tadeusz, Trylogia.',
23 'Pan Tadeusz też chce być w Internecie! Przekaż 1% swojego podatku.',
24 'Pomóż uwolnić 286 utworów z listy lektur szkolnych. Przekaż swój 1% na Wolne Lektury.'
28 function changeBannerText() {
29 var index = Math.floor(Math.random() * BANNER_TEXTS.length);
30 if (BANNER_TEXTS[index] == $('#onepercent-text').html()) {
34 $('#onepercent-text').fadeOut('slow', function() {
35 $(this).html(BANNER_TEXTS[index]);
36 $(this).fadeIn('slow');
39 setTimeout(changeBannerText, 30 * 1000);
46 $('form input').labelify({labelledClass: 'blur'});
48 target = $('#login-register-window div.target');
50 $('#show-registration-form').click(function() {
51 $('#login-form').hide();
52 $('#registration-form').show();
55 $('#show-login-form').click(function() {
56 $('#registration-form').hide();
57 $('#login-form').show();
61 $('.fragment-text').each(function() {
62 if ($(this).prev().filter('.fragment-short-text').length) {
64 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
65 function() { $(this).css({background: '#FFF'}); }
67 $(this).fadeOut(function() {
68 $(this).prev().fadeIn()
74 $('.fragment-short-text').click(function() {
75 $(this).fadeOut(function() { $(this).next().fadeIn() });
77 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
78 function() { $(this).css({background: '#FFF'}); }
81 $('.show-all-tags').click(function() {
82 $(this).parent().parent().fadeOut(function() {
83 $(this).next().fadeIn();
88 $('.hide-all-tags').click(function() {
89 $(this).parent().parent().fadeOut(function() {
90 $(this).prev().fadeIn();
95 $('#registration-form').ajaxForm({
97 beforeSubmit: function() {
98 $('#registration-form input[type=submit]')
99 .attr('disabled', 'disabled')
100 .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
102 success: function(response) {
103 if (response.success) {
104 location.reload(true);
106 $('#registration-form span.error').remove();
107 $.each(response.errors, function(id, errors) {
108 $('#id_registration-' + id).before('<span class="error">' + errors[0] + '</span>');
110 $('#registration-form input[type=submit]').removeAttr('disabled');
111 $('#registration-form img').remove();
116 $('#login-form').ajaxForm({
118 beforeSubmit: function() {
119 $('#login-form input[type=submit]')
120 .attr('disabled', 'disabled')
121 .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
123 success: function(response) {
124 if (response.success) {
125 location.reload(true);
127 $('#login-form span.error').remove();
128 $.each(response.errors, function(id, errors) {
129 $('#id_login-' + id).before('<span class="error">' + errors[0] + '</span>');
131 $('#login-form input[type=submit]').removeAttr('disabled');
132 $('#login-form img').remove();
137 $('#login-register-window').jqm({
140 trigger: '.login-register-link',
141 onShow: function(hash) {
142 var offset = $(hash.t).offset();
143 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
144 $('div.header', hash.w).css({width: $(hash.t).width()});
149 $('ul.shelf-list li').hover(function() {
150 $(this).css({background: '#EEE', cursor: 'pointer'});
152 $(this).css({background: 'transparent'});
153 }).click(function() {
154 location.href = $('a.visit-shelf', this).attr('href');
157 $('.delete-shelf').click(function() {
159 var shelf_name = $('.visit-shelf', link.parent()).text();
160 if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) {
161 $.post(link.attr('href'), function(data, textStatus) {
162 link.parent().remove();
168 $('#user-shelves-window').jqm({
170 target: $('#user-shelves-window div.target')[0],
172 trigger: '#user-shelves-link',
173 onShow: function(hash) {
174 var offset = $(hash.t).offset();
175 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
176 $('div.header', hash.w).css({width: $(hash.t).width()});
179 onLoad: function(hash) {
180 $('form', hash.w).ajaxForm({
181 target: $('#user-shelves-window div.target'),
182 success: function() { setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000) }
185 $('input', hash.w).labelify({labelledClass: 'blur'});
187 $('ul.shelf-list li', hash.w).hover(function() {
188 $(this).css({background: '#EEE', cursor: 'pointer'});
190 $(this).css({background: 'transparent'});
191 }).click(function() {
192 location.href = $('a.visit-shelf', this).attr('href');
195 $('.delete-shelf').click(function() {
197 var shelf_name = $('.visit-shelf', link.parent()).text();
198 if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) {
199 $.post(link.attr('href'), function(data, textStatus) {
200 link.parent().remove();
208 $('#books-list .book').hover(
209 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
210 function() { $(this).css({background: '#FFF'}); }
212 location.href = $('h2 a', this).attr('href');
215 $('#toggle-description').hover(
216 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
217 function() { $(this).css({background: '#EEE'}); }
219 if ($('#description').hasClass('hidden')) {
220 $('#description').slideDown('fast').removeClass('hidden');
221 $.cookie('description-state', 'opened', {path: '/', expires: 30});
222 $('p', this).html('Zwiń opis ▲');
224 $('#description').slideUp('fast').addClass('hidden');
225 $.cookie('description-state', 'closed', {path: '/', expires: 30});
226 $('p', this).html('Rozwiń opis ▼');
230 var target = $('#set-window div.target');
232 $('#set-window').jqm({
236 trigger: 'a.jqm-trigger',
237 onShow: function(hash) {
238 var offset = $(hash.t).offset();
239 target.html('<p><img src="/static/img/indicator.gif" /> Ładowanie</p>');
240 hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() },
241 onLoad: function(hash) {
242 $('form', hash.w).ajaxForm({
244 success: function() { setTimeout(function() { $('#set-window').jqmHide() }, 1000) }
249 $('a.remove-from-shelf').click(function(event) {
250 event.preventDefault();
252 $.post(link.attr('href'), function(data, textStatus) {
253 link.parent().remove();
257 if ($.cookie('description-state') == 'closed') {
258 $('#description').hide().addClass('hidden');
259 $('#toggle-description p').html('Rozwiń opis ▼');
262 $('#user-info').show();
264 $('#onepercent-banner').show();
266 var formatsDownloaded = false;
267 $('#download-shelf').click(function() {
268 $('#download-shelf-menu').slideDown('fast');
270 if (!formatsDownloaded) {
271 // Pobierz dane o formatach
272 formatsDownloaded = true;
274 url: $('#download-formats-form').attr('data-formats-feed'),
277 complete: function() {
278 $('#download-formats-form-submit').attr('disabled', null);
279 $('#download-formats-form-submit-li img').remove();
280 $('#updating-formats').fadeOut('fast', function() {
281 $('#formats-updated').fadeIn('fast');
284 success: function(data) {
285 $('#download-formats-form li').each(function() {
287 if (!!item.attr('data-format') && !data[item.attr('data-format')]) {
288 item.fadeOut('fast', function() {
299 $('#download-formats-form-cancel').click(function() {
300 $('#download-shelf-menu').slideUp('fast');