X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4bec460435e74e85924894c7f4065d1468baba8b..088b37be4aa9fe5156c101c0e65b0d229bcec849:/wolnelektury/static/js/catalogue.js diff --git a/wolnelektury/static/js/catalogue.js b/wolnelektury/static/js/catalogue.js index cb31654c9..1c23be82f 100644 --- a/wolnelektury/static/js/catalogue.js +++ b/wolnelektury/static/js/catalogue.js @@ -267,6 +267,7 @@ function serverTime() { return false; }); + var serverResponse; $('#user-shelves-window').jqm({ ajax: '@href', target: $('#user-shelves-window div.target')[0], @@ -280,8 +281,12 @@ function serverTime() { }, onLoad: function(hash) { $('form', hash.w).ajaxForm({ - target: $('#user-shelves-window div.target'), - success: function() { setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000) } + target: serverResponse, + success: function(serverResponse) { + var newShelf = $.parseJSON(serverResponse); + $('#user-shelves-window div.target').html(newShelf.msg); + setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000); + } }); $('input', hash.w).labelify({labelledClass: 'blur'}); @@ -378,19 +383,31 @@ function serverTime() { target.html('

'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'

'); hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() }, onLoad: function(hash) { - try { - $('#createShelfTrigger').click(function(){ - $('#createNewShelf').show(); - }); - } catch (e){} - + try { + $('#createShelfTrigger').click(function(){ + // who cares it's not needed, but I was looking for it + // that's why I want it to stay.. :) + // var slug = $(hash.t).attr('href').split("/")[3]; + $('#createNewShelf').show(); + }); + } catch (e){} + $("#putOnShelf input[type=checkbox]").attr("checked",false); + var serverResponse; $('form', hash.w).ajaxForm({ - target: target, - success: function() { - setTimeout(function() { - $('#set-window').jqmHide(); - }, 1000)} - }); + target: serverResponse, + success: function(serverResponse) { + var newShelf = $.parseJSON(serverResponse); + // for live shelf adding + if(newShelf.name){ + var noIds = $("#putOnShelf ol ul").children('li').length; + $("#putOnShelf ol ul").prepend('
  • '); + $("#createNewShelf ol input[name=name]").val(""); + } + if(newShelf.after == "close"){ + setTimeout(function() {$('#set-window').jqmHide();}, 1000); + } + } + }); } }); @@ -447,20 +464,7 @@ function serverTime() { return false; }); - $('marquee').marquee().mouseover(function () { - $(this).trigger('stop'); - }).mouseout(function () { - $(this).trigger('start'); - $(this).data('drag', false); - }).mousemove(function (event) { - if ($(this).data('drag') == true) { - this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX); - } - }).mousedown(function (event) { - $(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft); - }).mouseup(function () { - $(this).data('drag', false); - }); + $('.sponsor-logos').cycle({timeout: 3000}); $('.widget-code').focus( function(){ @@ -482,7 +486,9 @@ function serverTime() { $('.book-list-index').click(function(){ $('.book-list-show-index').hide('slow'); - $(this).parent().next('ul').toggle('slow'); + if($(this).parent().next('ul:not(:hidden)').length == 0){ + $(this).parent().next('ul').toggle('slow'); + } return false; });