fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Aligned propaganda box with volontariat box.
[wolnelektury.git]
/
wolnelektury
/
media
/
js
/
catalogue.js
diff --git
a/wolnelektury/media/js/catalogue.js
b/wolnelektury/media/js/catalogue.js
index
1d631e3
..
599bcf4
100644
(file)
--- a/
wolnelektury/media/js/catalogue.js
+++ b/
wolnelektury/media/js/catalogue.js
@@
-35,6
+35,15
@@
function() { $(this).css({background: '#FFF'}); }
);
function() { $(this).css({background: '#FFF'}); }
);
+ $('.show-all-tags').click(function() {
+ $(this).parent().parent().fadeOut(function() {
+ $(this).next().fadeIn();
+ });
+ return false;
+ });
+
+
+
$('#registration-form').ajaxForm({
dataType: 'json',
beforeSubmit: function() {
$('#registration-form').ajaxForm({
dataType: 'json',
beforeSubmit: function() {
@@
-89,6
+98,14
@@
}
});
}
});
+ $('ul.shelf-list li').hover(function() {
+ $(this).css({background: '#EEE', cursor: 'pointer'});
+ }, function() {
+ $(this).css({background: 'transparent'});
+ }).click(function() {
+ location.href = $('a.visit-shelf', this).attr('href');
+ });
+
$('.delete-shelf').click(function() {
var link = $(this);
var shelf_name = $('.visit-shelf', link.parent()).text();
$('.delete-shelf').click(function() {
var link = $(this);
var shelf_name = $('.visit-shelf', link.parent()).text();