1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- $(document).ready(function(){
-
- // Ouverture de la zone "ajouter un element""
- $('#element_add_link').click(function(){
- $('#element_add_box').slideDown("slow");
- $('#element_add_link').hide();
- $('form[name="search"]').slideUp();
- return false;
- });
-
- // Fermeture de la zone "ajouter un element""
- $('#element_add_close_link').click(function(){
- $('#element_add_box').slideUp("slow");
- $('#element_add_link').show();
- $('form[name="search"]').slideDown();
- return false;
- });
-
- // Bouton suivre
- $('div.show_options a.following').live({
- mouseenter:
- function()
- {
- $(this).html(string_follow_stop);
- },
- mouseleave:
- function()
- {
- $(this).html(string_follow_following);
- }
- }
- );
-
- $('div.show_options a.follow_link').live('click', function(){
- link = $(this);
- $.getJSON(link.attr('href'), function(response) {
-
- if (response.status == 'mustbeconnected')
- {
- $(location).attr('href', url_index);
- }
-
- if (response.status == 'success')
- {
- if (response.following)
- {
- link.html(string_follow_following);
- link.removeClass('notfollowing');
- link.addClass('following');
- }
- else
- {
- link.html(string_follow_follow);
- link.addClass('notfollowing');
- link.removeClass('following');
- }
- }
- });
- return false;
- });
-
- });
|